Fix CHANGE_NICK_ON_KILL feature

Remove the 'resend_only' flag option to fudge_nickname().  The only caller passing it was the CHANGE_NICK_ON_KILL
feature, and in that case it was the wrong thing too (and stopped that function from working at all).

Some other minor cleanups in fudge_nickname() while we're there.
This commit is contained in:
Kevin Easton
2017-07-15 23:29:14 +10:00
parent b481ed1e6e
commit cd9c358eed
6 changed files with 15 additions and 24 deletions

View File

@@ -503,7 +503,7 @@ char *t = NULL;
if (nick && (t = get_string_var(ALTNICK_VAR)))
{
if (!my_stricmp(t, nick))
fudge_nickname(server, 0);
fudge_nickname(server);
else
change_server_nickname(server, t);
} else
@@ -513,7 +513,7 @@ char *t = NULL;
else
reset_nickname(from_server);
#endif
fudge_nickname(server, 0);
fudge_nickname(server);
}
/*
@@ -1149,7 +1149,6 @@ void numbered_command(char *from, int comm, char **ArgList)
* Sometimes the server doesn't catch the USER line, so
* here we send a simplified version again -lynx
*/
/* fudge_nickname(from_server, 1);*/
register_server(from_server, NULL);
PasteArgs(ArgList, 0);