summary refs log tree commit diff stats
path: root/src/common/servlist.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/common/servlist.c')
-rw-r--r--src/common/servlist.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/servlist.c b/src/common/servlist.c
index 306b42e8..a87cc719 100644
--- a/src/common/servlist.c
+++ b/src/common/servlist.c
@@ -634,11 +634,11 @@ servlist_connect (session *sess, ircnet *net, gboolean join)
 		safe_strcpy (serv->password, net->pass, sizeof (serv->password));
 	}
 
-	if (net->flags & FLAG_USE_GLOBAL)
+	if (net->flags & FLAG_USE_GLOBAL || net->user == NULL)
 	{
 		strcpy (serv->sasluser, prefs.hex_irc_user_name);
 	}
-	else if (net->user != NULL)
+	else
 	{
 		safe_strcpy (serv->sasluser, net->user, sizeof (serv->sasluser));
 	}