Mercurial > pidgin
diff src/protocols/irc/irc.c @ 2536:0e0a54e5819a
[gaim-migrate @ 2549]
I got an itty bitty diff for you now ;-)
committer: Tailor Script <tailor@pidgin.im>
| author | Eric Warmenhoven <eric@warmenhoven.org> |
|---|---|
| date | Thu, 18 Oct 2001 12:12:38 +0000 |
| parents | 227cc42ffa6e |
| children | 3526c5581f92 |
line wrap: on
line diff
--- a/src/protocols/irc/irc.c Thu Oct 18 07:29:13 2001 +0000 +++ b/src/protocols/irc/irc.c Thu Oct 18 12:12:38 2001 +0000 @@ -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);
