ayttm-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Ayttm-commits] CVS: ayttm/modules/irc irc.c,1.14,1.15


From: Colin Leroy <address@hidden>
Subject: [Ayttm-commits] CVS: ayttm/modules/irc irc.c,1.14,1.15
Date: Mon, 24 Mar 2003 18:13:19 -0500

Update of /cvsroot/ayttm/ayttm/modules/irc
In directory subversions:/tmp/cvs-serv29552/modules/irc

Modified Files:
        irc.c 
Log Message:
let's consider this a bugfix with no special version ;)


Index: irc.c
===================================================================
RCS file: /cvsroot/ayttm/ayttm/modules/irc/irc.c,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- irc.c       24 Mar 2003 23:07:17 -0000      1.14
+++ irc.c       24 Mar 2003 23:13:17 -0000      1.15
@@ -846,7 +846,7 @@
                /* Reply as per the CTCP pseudo-RFC with a NOTICE, not a 
PRIVMSG */
                if (strstr(buff, "\001VERSION\001"))
                {
-                       g_snprintf(message, BUF_LEN, "NOTICE %s :\001VERSION 
Everybuddy:%s:http://www.everybuddy.com/\001\n";, nick, VERSION);
+                       g_snprintf(message, BUF_LEN, "NOTICE %s :\001VERSION 
Ayttm:%s:http://www.nongnu.org/ayttm/\001\n";, nick, VERSION);
                }
                else if (strstr(buff, "\001PING"))
                {
@@ -1147,7 +1147,7 @@
        ila->fd_tag = eb_input_add(ila->fd, EB_INPUT_READ, irc_callback, 
account);
 
        /* Log in */
-       g_snprintf(buff, BUF_LEN, "NICK %s\nUSER %s 0 * :Everybuddy user\n", 
nick, nick);
+       g_snprintf(buff, BUF_LEN, "NICK %s\nUSER %s 0 * :Ayttm user\n", nick, 
nick);
        free (nick);
 
        /* Try twice, then give up */
@@ -1185,7 +1185,7 @@
        eb_timeout_remove(ila->keepalive_tag);
 
        /* Log off in a nice way */
-       g_snprintf(buff, BUF_LEN, "QUIT :Everybuddy logging off\n");
+       g_snprintf(buff, BUF_LEN, "QUIT :Ayttm logging off\n");
        sendall(ila->fd, buff, strlen(buff));
        close(ila->fd);
 





reply via email to

[Prev in Thread] Current Thread [Next in Thread]