diff options
author | kcwu <kcwu@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2008-04-17 23:40:07 +0800 |
---|---|---|
committer | kcwu <kcwu@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2008-04-17 23:40:07 +0800 |
commit | 43138ba530d5b1711b03aba2c1c440c1aa16120a (patch) | |
tree | 622f1546a156953d1d9bd8d6b6d196c17be6aafd /mbbsd | |
parent | d614107a27ea750a3c6363ce608af9e2a88efbe1 (diff) | |
download | pttbbs-43138ba530d5b1711b03aba2c1c440c1aa16120a.tar pttbbs-43138ba530d5b1711b03aba2c1c440c1aa16120a.tar.gz pttbbs-43138ba530d5b1711b03aba2c1c440c1aa16120a.tar.bz2 pttbbs-43138ba530d5b1711b03aba2c1c440c1aa16120a.tar.lz pttbbs-43138ba530d5b1711b03aba2c1c440c1aa16120a.tar.xz pttbbs-43138ba530d5b1711b03aba2c1c440c1aa16120a.tar.zst pttbbs-43138ba530d5b1711b03aba2c1c440c1aa16120a.zip |
- remove unused global variable.
git-svn-id: http://opensvn.csie.org/pttbbs/trunk/pttbbs@4179 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
Diffstat (limited to 'mbbsd')
-rw-r--r-- | mbbsd/var.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/mbbsd/var.c b/mbbsd/var.c index 2ae88492..a2a019fe 100644 --- a/mbbsd/var.c +++ b/mbbsd/var.c @@ -88,7 +88,6 @@ int usernum; int currmode = 0; int currsrmode = 0; int curredit = 0; -int paste_level; int currbid; char quote_file[80] = "\0"; char quote_user[80] = "\0"; @@ -105,7 +104,6 @@ userec_t cuser; /* current user structure */ crosspost_t postrecord; /* anti cross post */ unsigned int currbrdattr; unsigned int currstat; -unsigned char currfmode; /* current file mode */ /* global string variables */ /* filename */ @@ -118,7 +116,6 @@ const char * const fn_writelog = "writelog"; const char * const fn_talklog = "talklog"; const char * const fn_overrides = FN_OVERRIDES; const char * const fn_reject = FN_REJECT; -const char * const fn_canvote = FN_CANVOTE; const char * const fn_notes = "notes"; const char * const fn_water = FN_WATER; const char * const fn_visable = FN_VISABLE; @@ -151,7 +148,6 @@ char * const msg_seperator = MSG_SEPERATOR; char * const msg_cancel = MSG_CANCEL; char * const msg_usr_left = MSG_USR_LEFT; -char * const msg_nobody = MSG_NOBODY; char * const msg_sure_ny = MSG_SURE_NY; char * const msg_sure_yn = MSG_SURE_YN; |