Skip to content

Commit

Permalink
nickserv/info: remove check causing crashbugs
Browse files Browse the repository at this point in the history
  • Loading branch information
siniStar7 committed Aug 3, 2018
1 parent 42fbf9e commit 0de8c73
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions modules/nickserv/info.c
Expand Up @@ -71,11 +71,6 @@ static void ns_cmd_info(sourceinfo_t *si, int parc, char *parv[])
command_fail(si, fault_needmoreparams, _("Syntax: INFO <nickname>"));
return;
}
if (parv[0][0] == '#')
{
command_fail(si, fault_needmoreparams, _("That is a channel name, not a valid Nickname."));
return;
}

noexist_req.si = si;
noexist_req.nick = name;
Expand Down

0 comments on commit 0de8c73

Please sign in to comment.