]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[#883, !506] fixed typo
authorRazvan Becheriu <razvan@isc.org>
Wed, 11 Sep 2019 08:40:29 +0000 (11:40 +0300)
committerRazvan Becheriu <razvan@isc.org>
Wed, 6 Nov 2019 17:32:51 +0000 (19:32 +0200)
src/lib/dhcpsrv/thread_pool.cc

index 675c41f5091c71b97b6a00a89021b6055d68b583..f3d27f28bdf3f3d2da1dd718aa607f0029d24f30 100644 (file)
@@ -128,7 +128,7 @@ struct ThreadPoolQueue {
     void stop(bool clear = false) {
         std::lock_guard<std::mutex> lock(mutex_);
         exit_ = true;
-        // Notify get() so that it can exit.
+        // Notify pop so that it can exit.
         cv_.notify_all();
         if (clear) {
             reset();