Move include/ust/ to include/lttng/
[lttng-ust.git] / liblttng-ust-comm / lttng-ust-comm.c
index bfba3b3c3c914dacff39076a6cbb244bcb1301ed..2903d57574b68d3d11f839604a324fb81079bde2 100644 (file)
@@ -29,7 +29,7 @@
 #include <assert.h>
 #include <errno.h>
 
-#include <lttng-ust-comm.h>
+#include <lttng/ust-comm.h>
 
 /*
  * Human readable error message.
@@ -213,13 +213,13 @@ error:
 /*
  *     ustcomm_listen_unix_sock
  *
- *     Make the socket listen using MAX_LISTEN.
+ *     Make the socket listen using LTTNG_UST_COMM_MAX_LISTEN.
  */
 int ustcomm_listen_unix_sock(int sock)
 {
        int ret;
 
-       ret = listen(sock, MAX_LISTEN);
+       ret = listen(sock, LTTNG_UST_COMM_MAX_LISTEN);
        if (ret < 0) {
                perror("listen");
        }
This page took 0.025768 seconds and 4 git commands to generate.