From: Eric W. <war...@us...> - 2001-10-18 12:12:42
|
Update of /cvsroot/gaim/gaim/src/protocols/irc In directory usw-pr-cvs1:/tmp/cvs-serv30537/src/protocols/irc Modified Files: irc.c Log Message: I got an itty bitty diff for you now ;-) Index: irc.c =================================================================== RCS file: /cvsroot/gaim/gaim/src/protocols/irc/irc.c,v retrieving revision 1.42 retrieving revision 1.43 diff -u -d -r1.42 -r1.43 --- irc.c 2001/10/14 11:36:36 1.42 +++ irc.c 2001/10/18 12:12:38 1.43 @@ -677,7 +677,7 @@ char buf[IRC_BUF_LEN]; if (!g_strncasecmp(msg, "VERSION", 7)) { - g_snprintf(buf, sizeof(buf), "NOTICE %s :\001VERSION GAIM " VERSION ": The Pimpin " + g_snprintf(buf, sizeof(buf), "NOTICE %s :\001VERSION Gaim " VERSION ": The Pimpin " "Penguin AIM Clone: " WEBSITE "\001\r\n", nick); irc_write(id->fd, buf, strlen(buf)); } @@ -899,7 +899,7 @@ hostname[sizeof(hostname) - 1] = 0; if (!*hostname) g_snprintf(hostname, sizeof(hostname), "localhost"); - g_snprintf(buf, sizeof(buf), "USER %s %s %s :GAIM (%s)\r\n", + g_snprintf(buf, sizeof(buf), "USER %s %s %s :Gaim (%s)\r\n", g_get_user_name(), hostname, gc->user->proto_opt[USEROPT_SERV], WEBSITE); if (irc_write(idata->fd, buf, strlen(buf)) < 0) { hide_login_progress(gc, "Write error"); @@ -943,7 +943,7 @@ struct irc_data *idata = (struct irc_data *)gc->proto_data; gchar buf[IRC_BUF_LEN]; - g_snprintf(buf, sizeof(buf), "QUIT :Download GAIM [%s]\r\n", WEBSITE); + g_snprintf(buf, sizeof(buf), "QUIT :Download Gaim [%s]\r\n", WEBSITE); irc_write(idata->fd, buf, strlen(buf)); g_free(idata->chantypes); |