From 92fb8a9a1eeee45af0fa92e07df11bedd4a06a39 Mon Sep 17 00:00:00 2001 From: Art Cancro Date: Sun, 1 Aug 2021 14:15:24 -0400 Subject: [PATCH] CONF LOADVAL and CONF STOREVAL are deprecated and probably safe to remove. --- citadel/control.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/citadel/control.c b/citadel/control.c index 22f662558..9e790e5b0 100644 --- a/citadel/control.c +++ b/citadel/control.c @@ -641,7 +641,7 @@ void cmd_conf(char *argbuf) } // CONF GETVAL - retrieve configuration variables from the database - // CONF LOADVAL - same thing but can handle variables bigger than 1 KB + // CONF LOADVAL - same thing but can handle variables bigger than 1 KB (deprecated and probably safe to remove) else if ( (!strcasecmp(cmd, "GETVAL")) || (!strcasecmp(cmd, "LOADVAL")) ) { extract_token(confname, argbuf, 1, '|', sizeof confname); char *v = CtdlGetConfigStr(confname); @@ -670,7 +670,7 @@ void cmd_conf(char *argbuf) } } - // CONF STOREVAL - store configuration variables in the database bigger than 1 KB + // CONF STOREVAL - store configuration variables in the database bigger than 1 KB (deprecated and probably safe to remove) else if (!strcasecmp(cmd, "STOREVAL")) { if (num_tokens(argbuf, '|') < 3) { cprintf("%d name and length required\n", ERROR); -- 2.30.2