diff options
author | Berke Viktor <bviktor@hexchat.org> | 2013-05-03 18:12:36 +0200 |
---|---|---|
committer | Berke Viktor <bviktor@hexchat.org> | 2013-05-03 18:12:36 +0200 |
commit | 863ff811e6275ad9177c5d55515e76fe1e802686 (patch) | |
tree | 9da05a86c9327c89c5868c4b969d1cf2cf44036f /src/common/proto-irc.c | |
parent | ba78c0527fcee58cd097a44c39e9fbd102d128a1 (diff) |
Don't make assumptions about the function being called
Diffstat (limited to 'src/common/proto-irc.c')
-rw-r--r-- | src/common/proto-irc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/proto-irc.c b/src/common/proto-irc.c index fc7323aa..984f7f20 100644 --- a/src/common/proto-irc.c +++ b/src/common/proto-irc.c @@ -89,7 +89,7 @@ irc_ns_identify (server *serv, char *pass) { if (serv->nickservtype == 4) /* QuakeNet needs to do everything in its own ways... */ { - irc_nickserv (serv, NULL, serv->nick, pass, NULL); + irc_nickserv (serv, "", serv->nick, pass, ""); } else { |