diff options
author | pranomostro <pranomostro@posteo.net> | 2017-07-09 13:42:33 +0200 |
---|---|---|
committer | pranomostro <pranomostro@posteo.net> | 2017-07-09 13:42:33 +0200 |
commit | 626785209095f8afb1af65a4a0406b2683560e94 (patch) | |
tree | 8ee40d9698d1f6b8bf381160e3e8a305e7d55ef0 /ratox.c | |
parent | f7a953ff973a632f4afa4914482052c2ad8ee300 (diff) |
Clarified error message for missing flag.
Diffstat (limited to 'ratox.c')
-rw-r--r-- | ratox.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1937,7 +1937,7 @@ newconf(void *data) input[n] = '\0'; if(!((input[0] == 't' || input[0] == 'a' || input[0] == 'v') && input[1] == ' ')) { dprintf(gslots[CONF].fd[ERR], "No flag t|a|v found in input \"%s\"\n", input); - weprintf("No flag found in input\n"); + weprintf("No flag t|a|v found in input\n"); return; } if(input[0] == 'a' || input[0] == 'v') { |