m_testline: Complain on formerly-silent failures

This commit is contained in:
Ed Kellett 2020-10-22 21:17:10 +01:00
parent f6b5e5382e
commit 3dcaa851f4
1 changed files with 12 additions and 0 deletions

View File

@ -117,7 +117,10 @@ mo_testline(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *sou
mask = p;
if(EmptyString(mask))
{
sendto_one_notice(source_p, "Invalid syntax for TESTLINE");
return;
}
}
if((p = strchr(mask, '@')))
@ -127,7 +130,10 @@ mo_testline(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *sou
host = p;
if(EmptyString(host))
{
sendto_one_notice(source_p, "Invalid syntax for TESTLINE");
return;
}
}
else
host = mask;
@ -269,7 +275,10 @@ mo_testkline(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *so
mask = p + 1;
if(EmptyString(mask))
{
sendto_one_notice(source_p, "Invalid syntax for TESTKLINE");
return;
}
}
if ((p = strchr(mask, '@')))
@ -279,7 +288,10 @@ mo_testkline(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *so
host = p;
if(EmptyString(host))
{
sendto_one_notice(source_p, "Invalid syntax for TESTKLINE");
return;
}
}
else
{