tCapitalize string in output - ratox - FIFO based tox client
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
 (DIR) commit 7a06e015762d5f585b44d5d9e176605786693830
 (DIR) parent ec057b18c29c00d5686dd6c2749e490c4b0e5749
 (HTM) Author: sin <sin@2f30.org>
       Date:   Mon, 15 Sep 2014 11:39:09 +0100
       
       Capitalize string in output
       
       Diffstat:
         M ratatox.c                           |       2 +-
       
       1 file changed, 1 insertion(+), 1 deletion(-)
       ---
 (DIR) diff --git a/ratatox.c b/ratatox.c
       t@@ -690,7 +690,7 @@ again:
                                if (cmd[1] == '\0' || isspace((int)cmd[1]))
                                        return (*cmds[i].cb)(cmd, strlen(cmd));
        
       -        fprintf(stderr, "unknown command: %s\n", cmd);
       +        fprintf(stderr, "Unknown command: %s\n", cmd);
                return -1;
        }