mirror of
https://github.com/anope/anope.git
synced 2026-07-06 14:33:13 +02:00
BUILD : 1.7.7 (559) BUGS : 291 NOTES : Fixed memoserv issue :)
git-svn-id: svn://svn.anope.org/anope/trunk@559 31f1291d-b8d6-0310-a050-a5561fc1590b git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@412 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
parent
08008cf252
commit
c8a8473bf6
@@ -6,6 +6,7 @@ Provided by Anope Dev. <dev@anope.org> - 2005
|
||||
01/19 A Add simple smtp client, read the README in src/tools for info [ #00]
|
||||
01/16 A Support for PTlinks VHOST (NEWMASK) command. [ #00]
|
||||
01/16 A Ulines Servers are now except from NOJOIN bans [#281]
|
||||
01/29 F Memoserv rsend issue [#291]
|
||||
01/23 F Fixed u_char warnings under OpenBSD. [ #00]
|
||||
01/23 F anope_cmd_ctcp() fixed it was setup wrong. [ #00]
|
||||
01/23 F Checks to make sure Services and Services Alias are not the same [ #00]
|
||||
|
||||
+8
-6
@@ -1406,14 +1406,16 @@ static int do_rsend(User * u)
|
||||
{
|
||||
char *name = strtok(NULL, " ");
|
||||
char *text = strtok(NULL, "");
|
||||
NickAlias *na = NULL;
|
||||
int z = 3;
|
||||
NickAlias *na;
|
||||
|
||||
na = findnick(name);
|
||||
|
||||
if (stricmp(na->nc->display, u->na->nc->display) == 0) {
|
||||
notice_lang(s_MemoServ, u, MEMO_NO_RSEND_SELF);
|
||||
return MOD_CONT;
|
||||
if ((na = findnick(name))) {
|
||||
if (u->na) {
|
||||
if (stricmp(na->nc->display, u->na->nc->display) == 0) {
|
||||
notice_lang(s_MemoServ, u, MEMO_NO_RSEND_SELF);
|
||||
return MOD_CONT;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if (MSMemoReceipt == 1) {
|
||||
|
||||
+5
-1
@@ -8,10 +8,14 @@
|
||||
VERSION_MAJOR="1"
|
||||
VERSION_MINOR="7"
|
||||
VERSION_PATCH="7"
|
||||
VERSION_BUILD="558"
|
||||
VERSION_BUILD="559"
|
||||
|
||||
# $Log$
|
||||
#
|
||||
# BUILD : 1.7.7 (559)
|
||||
# BUGS : 291
|
||||
# NOTES : Fixed memoserv issue :)
|
||||
#
|
||||
# BUILD : 1.7.7 (558)
|
||||
# BUGS : N/A
|
||||
# NOTES : Should really fix gcc2 stuff
|
||||
|
||||
Reference in New Issue
Block a user