From: Art Cancro Date: Sun, 1 Aug 2021 18:15:24 +0000 (-0400) Subject: CONF LOADVAL and CONF STOREVAL are deprecated and probably safe to remove. X-Git-Tag: v939~32 X-Git-Url: https://code.citadel.org/?p=citadel.git;a=commitdiff_plain;h=92fb8a9a1eeee45af0fa92e07df11bedd4a06a39 CONF LOADVAL and CONF STOREVAL are deprecated and probably safe to remove. --- 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);