chm_regmsg: don't duplicate nick in 415

sendto_one_numeric already includes the nick, so there's no need to 
duplicate it. OFTC does not.
This commit is contained in:
Doug Freed 2022-07-11 22:46:00 -04:00
parent a6b99c07d1
commit 860187d028
2 changed files with 2 additions and 2 deletions

View file

@ -71,7 +71,7 @@ chm_regmsg_process(void *data_)
return; return;
sendto_one_numeric(data->source_p, ERR_MSGNEEDREGGEDNICK, form_str(ERR_MSGNEEDREGGEDNICK), sendto_one_numeric(data->source_p, ERR_MSGNEEDREGGEDNICK, form_str(ERR_MSGNEEDREGGEDNICK),
data->source_p->name, data->chptr->chname); data->chptr->chname);
data->approved = ERR_MSGNEEDREGGEDNICK; data->approved = ERR_MSGNEEDREGGEDNICK;
} }

View file

@ -152,7 +152,7 @@
#define NUMERIC_STR_412 ":%s 412 %s :No text to send" #define NUMERIC_STR_412 ":%s 412 %s :No text to send"
#define NUMERIC_STR_413 "%s :No toplevel domain specified" #define NUMERIC_STR_413 "%s :No toplevel domain specified"
#define NUMERIC_STR_414 "%s :Wildcard in toplevel Domain" #define NUMERIC_STR_414 "%s :Wildcard in toplevel Domain"
#define NUMERIC_STR_415 "%s %s :Cannot send message to channel (+R) - you need to be logged into your NickServ account" #define NUMERIC_STR_415 "%s :Cannot send message to channel (+R) - you need to be logged into your NickServ account"
#define NUMERIC_STR_416 ":%s 416 %s %s :output too large, truncated" #define NUMERIC_STR_416 ":%s 416 %s %s :output too large, truncated"
#define NUMERIC_STR_421 ":%s 421 %s %s :Unknown command" #define NUMERIC_STR_421 ":%s 421 %s %s :Unknown command"
#define NUMERIC_STR_422 ":%s 422 %s :MOTD File is missing" #define NUMERIC_STR_422 ":%s 422 %s :MOTD File is missing"