diff options
author | trystan trystan@31f1291d-b8d6-0310-a050-a5561fc1590b <trystan trystan@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2004-11-29 05:36:04 +0000 |
---|---|---|
committer | trystan trystan@31f1291d-b8d6-0310-a050-a5561fc1590b <trystan trystan@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2004-11-29 05:36:04 +0000 |
commit | b28a698891c4c2e436c59f3dc7b7b243e6c088c2 (patch) | |
tree | e8190e02327ee7657d6131e57713d5e98f6b55db /src | |
parent | bd4d81fb5fb82bb12e4b505d6b6cf1cf0ea82c90 (diff) |
BUILD : 1.7.6 (466) BUGS : 237 NOTES : docs patch to bug 237
git-svn-id: svn://svn.anope.org/anope/trunk@466 31f1291d-b8d6-0310-a050-a5561fc1590b
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@320 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src')
-rw-r--r-- | src/memoserv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/memoserv.c b/src/memoserv.c index a1255f5bc..0b32cff83 100644 --- a/src/memoserv.c +++ b/src/memoserv.c @@ -611,7 +611,7 @@ static int read_memo(User * u, int index, MemoInfo * mi, const char *chan) m->flags &= ~MF_UNREAD; /* Check if a receipt notification was requested */ - if (m->flags && MF_RECEIPT) { + if (m->flags & MF_RECEIPT) { rsend_notify(u, m, chan); } |