Use UST comm lib
[lttng-tools.git] / liblttng-sessiond-comm / lttng-sessiond-comm.c
index 4bb6ed5783488cf2293d833339cd13de9eafda1f..5ba609e5aa098545d44035a47d7a84aca422d638 100644 (file)
@@ -206,13 +206,13 @@ error:
 }
 
 /*
- * Make the socket listen using MAX_LISTEN.
+ * Make the socket listen using LTTNG_SESSIOND_COMM_MAX_LISTEN.
  */
 int lttcomm_listen_unix_sock(int sock)
 {
        int ret;
 
-       ret = listen(sock, MAX_LISTEN);
+       ret = listen(sock, LTTNG_SESSIOND_COMM_MAX_LISTEN);
        if (ret < 0) {
                perror("listen");
        }
This page took 0.023809 seconds and 5 git commands to generate.