diff options
author | piaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2009-09-08 11:33:23 +0800 |
---|---|---|
committer | piaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2009-09-08 11:33:23 +0800 |
commit | ca5ee5b2867227c04827eb952685f8212715d1c7 (patch) | |
tree | 7368ccbd42c18f5ddb373fbf747aa90f4510a23a /mbbsd | |
parent | 8a3a6d8827cf9ba4073dbdff48e0cdfeb7d012c3 (diff) | |
download | pttbbs-ca5ee5b2867227c04827eb952685f8212715d1c7.tar pttbbs-ca5ee5b2867227c04827eb952685f8212715d1c7.tar.gz pttbbs-ca5ee5b2867227c04827eb952685f8212715d1c7.tar.bz2 pttbbs-ca5ee5b2867227c04827eb952685f8212715d1c7.tar.lz pttbbs-ca5ee5b2867227c04827eb952685f8212715d1c7.tar.xz pttbbs-ca5ee5b2867227c04827eb952685f8212715d1c7.tar.zst pttbbs-ca5ee5b2867227c04827eb952685f8212715d1c7.zip |
* merge trunk
* merge current
* allow view old 'goodpost' just like old numlogin
git-svn-id: http://opensvn.csie.org/pttbbs/branches/pttbbs.pwcu@4820 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
Diffstat (limited to 'mbbsd')
-rw-r--r-- | mbbsd/user.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mbbsd/user.c b/mbbsd/user.c index 1656869c..b6bc04b0 100644 --- a/mbbsd/user.c +++ b/mbbsd/user.c @@ -208,7 +208,8 @@ user_display(const userec_t * u, int adminmode) // conditional fields #ifdef ASSESS - prints("\t\t劣文數目: %d\n", u->badpost); + prints("\t\t劣文數目: %u (舊優文結算: %u)\n", + (unsigned int)u->badpost, (unsigned int)u->goodpost); #endif // ASSESS #ifdef CHESSCOUNTRY |