diff options
Diffstat (limited to 'FICS')
| -rw-r--r-- | FICS/command.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/FICS/command.c b/FICS/command.c index f7a2e3a..b9596cd 100644 --- a/FICS/command.c +++ b/FICS/command.c @@ -1104,6 +1104,12 @@ process_prompt(int p, char *command) case COM_LOGOUT: retval = COM_LOGOUT; break; + default: + pprintf(p, "%s: Unknown result when processing command.\n", + cmd); + retval = COM_OK; + pprintf(p, "%s", parray[p].prompt); + break; } return retval; |
