diff options
author | piaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2005-07-04 01:12:52 +0800 |
---|---|---|
committer | piaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2005-07-04 01:12:52 +0800 |
commit | dd335b471838fa45d85838bec7251b9a7525735a (patch) | |
tree | 48fba1059e8c1a91ebcd42e34c428bcbec83b765 /mbbsd/edit.c | |
parent | 974c4a844dbb4cd4589fee6a025469e30e0582e5 (diff) | |
download | pttbbs-dd335b471838fa45d85838bec7251b9a7525735a.tar pttbbs-dd335b471838fa45d85838bec7251b9a7525735a.tar.gz pttbbs-dd335b471838fa45d85838bec7251b9a7525735a.tar.bz2 pttbbs-dd335b471838fa45d85838bec7251b9a7525735a.tar.lz pttbbs-dd335b471838fa45d85838bec7251b9a7525735a.tar.xz pttbbs-dd335b471838fa45d85838bec7251b9a7525735a.tar.zst pttbbs-dd335b471838fa45d85838bec7251b9a7525735a.zip |
fix sig devide by zero bug,
query user -> cuser.money
git-svn-id: http://opensvn.csie.org/pttbbs/trunk/pttbbs@2885 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
Diffstat (limited to 'mbbsd/edit.c')
-rw-r--r-- | mbbsd/edit.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mbbsd/edit.c b/mbbsd/edit.c index c871ca52..51df6f5a 100644 --- a/mbbsd/edit.c +++ b/mbbsd/edit.c @@ -1480,7 +1480,7 @@ browse_sigs: if (si.total > 0){ unsigned char msg[64]; - ch = isdigit(cuser.signature) ? cuser.signature : 'X'; + ch = isdigit(cuser.signature) ? cuser.signature : 'x'; sprintf(msg, (browsing || (si.max > si.show_max)) ? "請選擇簽名檔 (1-9, 0=不加 n=翻頁 x=隨機)[%c]: ": @@ -1503,7 +1503,7 @@ browse_sigs: if (isdigit((int)buf[0])) ch = buf[0]; else - ch = '1' + random() % si.max; + ch = '1' + random() % (si.max+1); cuser.signature = buf[0]; if (ch != '0') { |