X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Funixsock.c;h=2df4e096e7a63b03c3dda1b89143d4e1c405a19d;hb=e81567f2a645fd15f4384ca9569119bc66c1412a;hp=4a7652ab5a1f4d924902eb5229285db84b81d561;hpb=0dc6fd79c3f33d7337f01bf5fefd48a7e48f67c2;p=collectd.git diff --git a/src/unixsock.c b/src/unixsock.c index 4a7652ab..2df4e096 100644 --- a/src/unixsock.c +++ b/src/unixsock.c @@ -378,7 +378,7 @@ static void *us_server_thread (void __attribute__((unused)) *arg) DEBUG ("Spawning child to handle connection on fd #%i", *remote_fd); status = plugin_thread_create (&th, &th_attr, - us_handle_client, (void *) remote_fd, "unixsock client"); + us_handle_client, (void *) remote_fd, "unixsock conn"); if (status != 0) { char errbuf[1024]; @@ -459,7 +459,7 @@ static int us_init (void) loop = 1; status = plugin_thread_create (&listen_thread, NULL, - us_server_thread, NULL, "unixsock listener"); + us_server_thread, NULL, "unixsock listen"); if (status != 0) { char errbuf[1024];