summaryrefslogtreecommitdiffstats
path: root/mbbsd
diff options
context:
space:
mode:
authorpiaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2008-04-19 05:50:04 +0800
committerpiaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2008-04-19 05:50:04 +0800
commit16cbbae762ff2c52b073e618bd2a1a64521b560d (patch)
treefe158796c1a1ffdefa9b74cc1d6a7df900bdec15 /mbbsd
parentda6a317fcaa76d01a43f80925f8d3137e193984c (diff)
downloadpttbbs-16cbbae762ff2c52b073e618bd2a1a64521b560d.tar
pttbbs-16cbbae762ff2c52b073e618bd2a1a64521b560d.tar.gz
pttbbs-16cbbae762ff2c52b073e618bd2a1a64521b560d.tar.bz2
pttbbs-16cbbae762ff2c52b073e618bd2a1a64521b560d.tar.lz
pttbbs-16cbbae762ff2c52b073e618bd2a1a64521b560d.tar.xz
pttbbs-16cbbae762ff2c52b073e618bd2a1a64521b560d.tar.zst
pttbbs-16cbbae762ff2c52b073e618bd2a1a64521b560d.zip
- (internal) fix chicken and bid data padding error
- user: fix conditional compile error git-svn-id: http://opensvn.csie.org/pttbbs/trunk/pttbbs@4195 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
Diffstat (limited to 'mbbsd')
-rw-r--r--mbbsd/user.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mbbsd/user.c b/mbbsd/user.c
index 18f5576d..8d8474f7 100644
--- a/mbbsd/user.c
+++ b/mbbsd/user.c
@@ -133,7 +133,7 @@ user_display(const userec_t * u, int adminmode)
(u->uflag2 & LIVERIGHT) ? "永久居留)" : "未取得居留權)"
: "");
#elif defined(FOREIGN_REG)
- prints(" %s" u->uflag2 & FOREIGN ? "(外籍)" : "");
+ prints(" %s", u->uflag2 & FOREIGN ? "(外籍)" : "");
#endif
outs("\n"); // end of realname
prints("\t\t職業學歷: %s\n", u->career);