Reworked the setup program to use the new config system.
[citadel.git] / citadel / control.c
index 24b643229edca506347d1dbbebf9c9a0e28b8794..e14d4f29b4568c5079a310c2cde77562b61ee260 100644 (file)
@@ -628,10 +628,10 @@ void cmd_conf(char *argbuf)
                extract_token(confname, argbuf, 1, '|', sizeof confname);
                char *v = CtdlGetConfigStr(confname);
                if (v) {
-                       cprintf("%d|%s|\n", CIT_OK, v);
+                       cprintf("%d %s|\n", CIT_OK, v);
                }
                else {
-                       cprintf("%d||\n", ERROR);
+                       cprintf("%d |\n", ERROR);
                }
        }