Skip to content

Commit

Permalink
Merge pull request #191 from kobishmueli/master
Browse files Browse the repository at this point in the history
Fix a small bug where the "Connect: No Connect block found for %s" notice have no origin prefix (issue #190)
  • Loading branch information
eaescob authored Jul 24, 2021
2 parents b050318 + ee2dcad commit c84c4e1
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 c84c4e1

Please sign in to comment.