summaryrefslogtreecommitdiff
path: root/httpd.c
diff options
context:
space:
mode:
authorGravatar default2023-02-02 04:50:51 +0100
committerGravatar default2023-02-02 04:50:51 +0100
commit8d22c448d473491b959709d29af46c25e3d7f80b (patch)
treeb3e940795e06cc130498485d98075617698cc174 /httpd.c
parentqueue() renamed to user_queue(). (diff)
downloadsnac2-8d22c448d473491b959709d29af46c25e3d7f80b.tar.gz
snac2-8d22c448d473491b959709d29af46c25e3d7f80b.tar.xz
snac2-8d22c448d473491b959709d29af46c25e3d7f80b.zip
process_queue() has been renamed to process_user_queue().
Diffstat (limited to 'httpd.c')
-rw-r--r--httpd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/httpd.c b/httpd.c
index c5f9ff8..c47b841 100644
--- a/httpd.c
+++ b/httpd.c
@@ -274,7 +274,7 @@ static void *queue_thread(void *arg)
274 snac snac; 274 snac snac;
275 275
276 if (user_open(&snac, uid)) { 276 if (user_open(&snac, uid)) {
277 process_queue(&snac); 277 process_user_queue(&snac);
278 user_free(&snac); 278 user_free(&snac);
279 } 279 }
280 } 280 }