diff options
author | piaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2013-03-18 00:52:06 +0800 |
---|---|---|
committer | piaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2013-03-18 00:52:06 +0800 |
commit | f06f06d9213258e866dc9d9d300b2850d6375d90 (patch) | |
tree | d882374d76f5bfd161fd426a1afa87440ee4e1e0 | |
parent | 14004f620e8995a9abcb4b04895f8b72707cf556 (diff) | |
download | pttbbs-f06f06d9213258e866dc9d9d300b2850d6375d90.tar pttbbs-f06f06d9213258e866dc9d9d300b2850d6375d90.tar.gz pttbbs-f06f06d9213258e866dc9d9d300b2850d6375d90.tar.bz2 pttbbs-f06f06d9213258e866dc9d9d300b2850d6375d90.tar.lz pttbbs-f06f06d9213258e866dc9d9d300b2850d6375d90.tar.xz pttbbs-f06f06d9213258e866dc9d9d300b2850d6375d90.tar.zst pttbbs-f06f06d9213258e866dc9d9d300b2850d6375d90.zip |
Fix angel notification checking logic.
git-svn-id: http://opensvn.csie.org/pttbbs/trunk@5806 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
-rw-r--r-- | pttbbs/mbbsd/angel.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pttbbs/mbbsd/angel.c b/pttbbs/mbbsd/angel.c index 98e208e0..fcadd907 100644 --- a/pttbbs/mbbsd/angel.c +++ b/pttbbs/mbbsd/angel.c @@ -76,7 +76,7 @@ angel_notify_activity(const char *userid) { #ifdef ANGEL_CIA_ACCOUNT // Don't notify AngelBeats for CIA account. - if (strcasecmp(userid, ANGEL_CIA_ACCOUNT) != 0) + if (strcasecmp(userid, ANGEL_CIA_ACCOUNT) == 0) return; #endif |