Mercurial > pidgin.yaz
changeset 3562:de3bc24fff02
[gaim-migrate @ 3657]
having a link in the realname field causes a problem for _at least_ one server.
this fix from paco-paco simplifies the realname field so that things work.
committer: Tailor Script <tailor@pidgin.im>
author | Luke Schierer <lschiere@pidgin.im> |
---|---|
date | Sat, 28 Sep 2002 03:48:28 +0000 |
parents | 333551497ff8 |
children | e120097bbd72 |
files | src/protocols/irc/irc.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/src/protocols/irc/irc.c Fri Sep 27 03:34:54 2002 +0000 +++ b/src/protocols/irc/irc.c Sat Sep 28 03:48:28 2002 +0000 @@ -1317,10 +1317,10 @@ hostname[sizeof(hostname) - 1] = 0; if (!*hostname) g_snprintf(hostname, sizeof(hostname), "localhost"); - g_snprintf(buf, sizeof(buf), "USER %s %s %s :%s [Gaim (%s)]\r\n", + g_snprintf(buf, sizeof(buf), "USER %s %s %s :%s\r\n", g_get_user_name(), hostname, gc->user->proto_opt[USEROPT_SERV], - gc->user->alias, WEBSITE); + gc->user->alias); if (irc_write(idata->fd, buf, strlen(buf)) < 0) { hide_login_progress(gc, "Write error"); signoff(gc);