]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
Correct comment
authorNick Porter <nick@portercomputing.co.uk>
Mon, 8 Sep 2025 15:48:12 +0000 (16:48 +0100)
committerNick Porter <nick@portercomputing.co.uk>
Wed, 17 Sep 2025 14:06:41 +0000 (15:06 +0100)
src/lib/io/atomic_queue.c

index 7bf0bcdaf1da661fb7f93ed0bd7152f129bae325..645e7382ff101e330d1d60448e4b58031ed3d163 100644 (file)
@@ -230,7 +230,7 @@ bool fr_atomic_queue_pop(fr_atomic_queue_t *aq, void **p_data)
                diff = (seq - (tail + 1));
 
                /*
-                *      tail is smaller than the current entry, the queue is full.
+                *      tail is smaller than the current entry, the queue is empty.
                 */
                if (diff < 0) {
                        return false;