summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--source3/lib/pthreadpool/pthreadpool.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/lib/pthreadpool/pthreadpool.c b/source3/lib/pthreadpool/pthreadpool.c
index c5c9367da1..bd58d62f8f 100644
--- a/source3/lib/pthreadpool/pthreadpool.c
+++ b/source3/lib/pthreadpool/pthreadpool.c
@@ -335,8 +335,8 @@ int pthreadpool_destroy(struct pthreadpool *pool)
if (pool->num_idle > 0) {
/*
- * Wake the idle threads. They will find pool->quit to
- * be set and exit themselves
+ * Wake the idle threads. They will find
+ * pool->shutdown to be set and exit themselves
*/
ret = pthread_cond_broadcast(&pool->condvar);
if (ret != 0) {