# HG changeset patch # User Luke Schierer # Date 1033184908 0 # Node ID de3bc24fff02e38bb976be08b08160cb2754d201 # Parent 333551497ff894f7874f52b573ac859840fc842a [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 diff -r 333551497ff8 -r de3bc24fff02 src/protocols/irc/irc.c --- 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);