1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-30 14:56:39 +02:00

Fixed bug with use of nick1 with a new server ("weechat_user" was used instead of nick1)

This commit is contained in:
Sebastien Helleu
2005-11-23 15:44:01 +00:00
parent 6cfb01f363
commit ea3d7c278d
4 changed files with 4 additions and 2 deletions
-1
View File
@@ -400,7 +400,6 @@ server_new (char *name, int autoconnect, int autoreconnect, int autoreconnect_de
new_server->autojoin =
(autojoin) ? strdup (autojoin) : NULL;
new_server->autorejoin = autorejoin;
new_server->nick = strdup (new_server->nick1);
new_server->notify_levels =
(notify_levels) ? strdup (notify_levels) : NULL;
}