diff options
Diffstat (limited to 'degesch.c')
| -rw-r--r-- | degesch.c | 3 | 
1 files changed, 2 insertions, 1 deletions
@@ -4676,7 +4676,8 @@ irc_connect (struct server *s, bool *should_retry, struct error **e)  	irc_reset_connection_timeouts (s);  	irc_send (s, "NICK %s", nickname); -	irc_send (s, "USER %s 8 * :%s", username, realname); +	// IRC servers may ignore the last argument if it's empty +	irc_send (s, "USER %s 8 * :%s", username, *realname ? realname : " ");  	// XXX: maybe we should wait for the first message from the server  	// FIXME: the user may exist already after we've reconnected. Either  | 
