mirror of
https://github.com/anope/anope.git
synced 2026-07-05 03:13:13 +02:00
BUILD : 1.7.19 (1314) BUGS : 797 NOTES : Fixed malformed command for chgident in inspircd11.c
git-svn-id: svn://svn.anope.org/anope/trunk@1314 31f1291d-b8d6-0310-a050-a5561fc1590b git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1032 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
parent
4517a6e2c1
commit
2ad0fde826
@@ -50,6 +50,7 @@ Anope Version S V N
|
||||
12/02 F Fixed a typo in install.js. [#804]
|
||||
12/02 F Fixed the protect commands in inspircd11.c. [#805]
|
||||
12/03 F Unregistered users now have access level 0 instead of -1. [#796]
|
||||
12/03 F Malformed command for InspIRCd 1.1. [#797]
|
||||
|
||||
Provided by Trystan <trystan@nomadirc.net> - 2007
|
||||
08/29 F Module runtime directory not always properly cleaned up. [#768]
|
||||
|
||||
@@ -944,13 +944,15 @@ void inspircd_cmd_chghost(char *nick, char *vhost)
|
||||
/* CHGIDENT */
|
||||
void inspircd_cmd_chgident(char *nick, char *vIdent)
|
||||
{
|
||||
if (has_chgidentmod == 1) {
|
||||
if (!nick || !vIdent) {
|
||||
return;
|
||||
}
|
||||
send_cmd(s_OperServ, "CHGIDENT %s %s", nick, vIdent);
|
||||
void inspircd_cmd_chgident(char *nick, char *vIdent)
|
||||
{
|
||||
if (has_chgidentmod == 1) {
|
||||
if (!nick || !vIdent || !*vIdent) {
|
||||
return;
|
||||
}
|
||||
send_cmd(s_OperServ, "CHGIDENT %s %s", nick, vIdent);
|
||||
} else {
|
||||
anope_cmd_global(s_OperServ, "CHGIDENT not loaded!");
|
||||
anope_cmd_global(s_OperServ, "CHGIDENT not loaded!");
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+5
-1
@@ -9,10 +9,14 @@ VERSION_MAJOR="1"
|
||||
VERSION_MINOR="7"
|
||||
VERSION_PATCH="19"
|
||||
VERSION_EXTRA="-svn"
|
||||
VERSION_BUILD="1313"
|
||||
VERSION_BUILD="1314"
|
||||
|
||||
# $Log$
|
||||
#
|
||||
# BUILD : 1.7.19 (1314)
|
||||
# BUGS : 797
|
||||
# NOTES : Fixed malformed command for chgident in inspircd11.c
|
||||
#
|
||||
# BUILD : 1.7.19 (1313)
|
||||
# BUGS : 796
|
||||
# NOTES : Fixed unregistered users getting access level -1 instead of 0 so they could never get opped
|
||||
|
||||
Reference in New Issue
Block a user