summaryrefslogtreecommitdiffstats
path: root/mbbsd/stuff.c
diff options
context:
space:
mode:
authorin2 <in2@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2005-06-14 21:15:00 +0800
committerin2 <in2@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2005-06-14 21:15:00 +0800
commitf3156a5477c4ca44d6d64b9c5e4897e28ea936cf (patch)
tree6058087f3876a652d0a9b7814a3c100615448f6d /mbbsd/stuff.c
parentc87da8855f7f3edcd1fba6578a2c3f809cad8dc8 (diff)
downloadpttbbs-f3156a5477c4ca44d6d64b9c5e4897e28ea936cf.tar
pttbbs-f3156a5477c4ca44d6d64b9c5e4897e28ea936cf.tar.gz
pttbbs-f3156a5477c4ca44d6d64b9c5e4897e28ea936cf.tar.bz2
pttbbs-f3156a5477c4ca44d6d64b9c5e4897e28ea936cf.tar.lz
pttbbs-f3156a5477c4ca44d6d64b9c5e4897e28ea936cf.tar.xz
pttbbs-f3156a5477c4ca44d6d64b9c5e4897e28ea936cf.tar.zst
pttbbs-f3156a5477c4ca44d6d64b9c5e4897e28ea936cf.zip
better readability.
real => adminmode, HAS_PERM() => HasUserPerm(), HasPerm() => HasBoardPerm(). git-svn-id: http://opensvn.csie.org/pttbbs/trunk/pttbbs@2840 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
Diffstat (limited to 'mbbsd/stuff.c')
-rw-r--r--mbbsd/stuff.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/mbbsd/stuff.c b/mbbsd/stuff.c
index cd0b3471..3b076fca 100644
--- a/mbbsd/stuff.c
+++ b/mbbsd/stuff.c
@@ -848,7 +848,7 @@ show_help(const char * const helptext[])
prints(" %s\n", str);
}
#ifdef PLAY_ANGEL
- if (HAS_PERM(PERM_LOGINOK))
+ if (HasUserPerm(PERM_LOGINOK))
pressanykey_or_callangel();
else
#endif
@@ -861,7 +861,7 @@ show_helpfile(const char *helpfile)
clear();
show_file((char *)helpfile, 0, b_lines, NO_RELOAD);
#ifdef PLAY_ANGEL
- if (HAS_PERM(PERM_LOGINOK))
+ if (HasUserPerm(PERM_LOGINOK))
pressanykey_or_callangel();
else
#endif