changing the special command operator - sic - simple irc client
 (HTM) git clone git://git.suckless.org/sic
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
 (DIR) commit 60fc462aa931748914c9c221f73505413933d4cc
 (DIR) parent 9b093ac5c6e68935d7b941678159ed1e3218daa8
 (HTM) Author: Anselm R. Garbe <arg@suckless.org>
       Date:   Fri,  9 Feb 2007 15:18:08 +0100
       
       changing the special command operator
       Diffstat:
         M sic.c                               |       2 +-
       
       1 file changed, 1 insertion(+), 1 deletion(-)
       ---
 (DIR) diff --git a/sic.c b/sic.c
       @@ -135,7 +135,7 @@ parsesrv(char *msg) {
                        write(srv, bufout, strlen(bufout));
                }
                else {
       -                snprintf(bufout, sizeof bufout, "-!- %s: %s", cmd, txt ? txt : "");
       +                snprintf(bufout, sizeof bufout, ">< %s: %s", cmd, txt ? txt : "");
                        pout(usr, bufout);
                }
        }