Skip to content

Commit

Permalink
Fix a small bug where the "Connect: No Connect block found for %s" no…
Browse files Browse the repository at this point in the history
…tice have no origin prefix (issue #190)
  • Loading branch information
kobishmueli committed Jul 24, 2021
1 parent 80990dd commit 2c8d233
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/s_serv.c
Original file line number Diff line number Diff line change
Expand Up @@ -944,8 +944,8 @@ m_connect(aClient *cptr, aClient *sptr, int parc, char *parv[])

if (!(aconn = find_aConnect(parv[1])))
{
sendto_one(sptr, "NOTICE %s :Connect: No Connect block found for %s.",
parv[0], parv[1]);
sendto_one(sptr, ":%s NOTICE %s :Connect: No Connect block found for %s.",
me.name, parv[0], parv[1]);
return 0;
}
/*
Expand Down

0 comments on commit 2c8d233

Please sign in to comment.