diff options
author | piaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2009-06-29 01:57:21 +0800 |
---|---|---|
committer | piaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2009-06-29 01:57:21 +0800 |
commit | 8c0cfdf22d4438f161735eb73c87dd6c0a82e621 (patch) | |
tree | f5552e99be6a1c39bd763fbe8918d92d6e39a247 | |
parent | 44beb78c24a50b9cc8bf7cbeadc0ab26b2806492 (diff) | |
download | pttbbs-8c0cfdf22d4438f161735eb73c87dd6c0a82e621.tar pttbbs-8c0cfdf22d4438f161735eb73c87dd6c0a82e621.tar.gz pttbbs-8c0cfdf22d4438f161735eb73c87dd6c0a82e621.tar.bz2 pttbbs-8c0cfdf22d4438f161735eb73c87dd6c0a82e621.tar.lz pttbbs-8c0cfdf22d4438f161735eb73c87dd6c0a82e621.tar.xz pttbbs-8c0cfdf22d4438f161735eb73c87dd6c0a82e621.tar.zst pttbbs-8c0cfdf22d4438f161735eb73c87dd6c0a82e621.zip |
* remove open_bid, according the statistical results.
* open_bid is invoked less than 375 in 16 months (with lots of testing posts) so we decide to remove it.
* the other bid parts will be removed in the future.
git-svn-id: http://opensvn.csie.org/pttbbs/trunk/pttbbs@4714 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
-rw-r--r-- | mbbsd/bbs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mbbsd/bbs.c b/mbbsd/bbs.c index 851f06e3..fba3539f 100644 --- a/mbbsd/bbs.c +++ b/mbbsd/bbs.c @@ -4033,7 +4033,7 @@ const onekey_t read_comms[] = { { 0, NULL }, // Ctrl('L') { 0, NULL }, // Ctrl('M') { 0, NULL }, // Ctrl('N') - { 0, do_post_openbid }, // Ctrl('O') // BETTER NOT USE ^O - UNIX not work + { 0, NULL }, // Ctrl('O') // BETTER NOT USE ^O - UNIX not work { 0, do_post }, // Ctrl('P') { 0, NULL }, // Ctrl('Q') { 0, NULL }, // Ctrl('R') |