CtdlCheckExpress() now accepts a session context.
[citadel.git] / citadel / server / modules / ctdlproto / serv_session.c
index 79ed2d042739d0ff604ba52cf4deeb7b6f0d61a9..301213af6bba76a6c456a1cb3f5f09323382cb6b 100644 (file)
@@ -1,6 +1,6 @@
 // Server functions which perform operations on user objects.
 //
-// Copyright (c) 1987-2023 by the citadel.org team
+// Copyright (c) 1987-2024 by the citadel.org team
 //
 // This program is open source software; you can redistribute it and/or
 // modify it under the terms of the GNU General Public License, version 3.
@@ -13,7 +13,7 @@
 
 
 void cmd_noop(char *argbuf) {
-       cprintf("%d%cok\n", CIT_OK, CtdlCheckExpress() );
+       cprintf("%d%cok\n", CIT_OK, CtdlCheckExpress(CC) );
 }