Command prompt was much too short; lengthened it.
authorMichael Hampton <io_error@uncensored.citadel.org>
Thu, 8 Feb 2007 12:34:55 +0000 (12:34 +0000)
committerMichael Hampton <io_error@uncensored.citadel.org>
Thu, 8 Feb 2007 12:34:55 +0000 (12:34 +0000)
citadel/citadel.c
citadel/commands.c

index ad24903ac0a448077878425a390014c1cbf6b7a6..1894907d375d2f7c9e71fa243ce04a140583cfdc 100644 (file)
@@ -1350,7 +1350,7 @@ int main(int argc, char **argv)
 {
        int a, b, mcmd;
        char aaa[100], bbb[100];/* general purpose variables */
-       char argbuf[32];        /* command line buf */
+       char argbuf[64];        /* command line buf */
        char nonce[NONCE_SIZE];
        char *telnet_client_host = NULL;
        char *sptr, *sptr2;     /* USed to extract the nonce */
index 8a9ea1911d4ff5440a56531516c60295b8f93ed8..5c92f6207e959f6db880b97a96317cc6e9f6ddea 100644 (file)
@@ -1154,7 +1154,7 @@ int getcmd(CtdlIPC *ipc, char *argbuf)
                        if (cmdmatch(cmdbuf, cptr, 5)) {
                                /* We've found our command. */
                                if (requires_string(cptr, cmdpos)) {
-                                       ctdl_getline(argbuf, 32);
+                                       ctdl_getline(argbuf, 64);
                                } else {
                                        scr_printf("\n");
                                }