summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Changes2
-rw-r--r--actions.c2
-rw-r--r--memoserv.c3
-rw-r--r--version.log6
4 files changed, 10 insertions, 3 deletions
diff --git a/Changes b/Changes
index 512809177..25631481b 100644
--- a/Changes
+++ b/Changes
@@ -1,6 +1,8 @@
Anope Version S V N
-------------------
Provided by Anope Dev. <dev@anope.org> - 2004
+06/02 F Fixed bug where people who set memoserv notify off were notified [ #79]
+06/02 F Fixed blocker bug in actions.c preventing compile
05/28 F Fixed botserv bug with HAS_EXCEPTION (chmode +e)
05/27 A Better /OS MODLIST output to include version information. [ #74]
05/25 A New /CS CLEAR HOPS for ircd's that support halfops. [ #72]
diff --git a/actions.c b/actions.c
index c1f75f0b8..53c6dd5b7 100644
--- a/actions.c
+++ b/actions.c
@@ -85,7 +85,7 @@ void kill_user(const char *source, const char *user, const char *reason)
snprintf(buf, sizeof(buf), "%s (%s)", source, reason);
av[0] = sstrdup(user);
av[1] = buf;
- send_cmd(ServerName, "SVSKILL %s :%s", u2->nick, reason);
+ /* send_cmd(ServerName, "SVSKILL %s :%s", user, reason); */
send_cmd(source, "KILL %s :%s", user, av[1]);
do_kill(source, 2, av);
free(av[0]);
diff --git a/memoserv.c b/memoserv.c
index 04bac6fee..889a0759e 100644
--- a/memoserv.c
+++ b/memoserv.c
@@ -353,7 +353,8 @@ void memo_send(User * u, char *name, char *text, int z)
s_MemoServ, m->number);
}
} else {
- if ((u = finduser(name)) && nick_identified(u))
+ if ((u = finduser(name)) && nick_identified(u)
+ && (nc->flags & NI_MEMO_RECEIVE))
notice_lang(s_MemoServ, u, MEMO_NEW_MEMO_ARRIVED,
source, s_MemoServ, m->number);
} /* if (flags & MEMO_RECEIVE) */
diff --git a/version.log b/version.log
index e7aee7347..94f16ee3a 100644
--- a/version.log
+++ b/version.log
@@ -8,10 +8,14 @@
VERSION_MAJOR="1"
VERSION_MINOR="7"
VERSION_PATCH="3"
-VERSION_BUILD="161"
+VERSION_BUILD="162"
# $Log$
#
+# BUILD : 1.7.3 (162)
+# BUGS : 79
+# NOTES : Fixed bug 79 (memoserv set notify not working) also fixed a blocker bug in actions.c
+#
# BUILD : 1.7.3 (161)
# NOTES : Fixed cut/paste error on mydbgen
#