diff options
author | kcwu <kcwu@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2002-08-09 19:36:23 +0800 |
---|---|---|
committer | kcwu <kcwu@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2002-08-09 19:36:23 +0800 |
commit | 204cdde14ce36be5d3f36bcad3ce3841fa27a9bc (patch) | |
tree | 33e281589b67861c52dac8f278e4dd2f057c7287 | |
parent | 1aa48ff382b16e2b50afc59206b22107a9e8cdfe (diff) | |
download | pttbbs-204cdde14ce36be5d3f36bcad3ce3841fa27a9bc.tar pttbbs-204cdde14ce36be5d3f36bcad3ce3841fa27a9bc.tar.gz pttbbs-204cdde14ce36be5d3f36bcad3ce3841fa27a9bc.tar.bz2 pttbbs-204cdde14ce36be5d3f36bcad3ce3841fa27a9bc.tar.lz pttbbs-204cdde14ce36be5d3f36bcad3ce3841fa27a9bc.tar.xz pttbbs-204cdde14ce36be5d3f36bcad3ce3841fa27a9bc.tar.zst pttbbs-204cdde14ce36be5d3f36bcad3ce3841fa27a9bc.zip |
no need to change the case of first char
git-svn-id: http://opensvn.csie.org/pttbbs/pttbbs/trunk@465 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
-rw-r--r-- | pttbbs/mbbsd/talk.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pttbbs/mbbsd/talk.c b/pttbbs/mbbsd/talk.c index b36aade9..120d9be0 100644 --- a/pttbbs/mbbsd/talk.c +++ b/pttbbs/mbbsd/talk.c @@ -1,4 +1,4 @@ -/* $Id: talk.c,v 1.82 2002/07/27 13:14:41 kcwu Exp $ */ +/* $Id: talk.c,v 1.83 2002/08/09 11:36:23 kcwu Exp $ */ #include "bbs.h" #define QCAST int (*)(const void *, const void *) @@ -2112,7 +2112,7 @@ userlist(void) case 'i':{ char mindbuf[5]; getdata(b_lines - 1, 0, "現在的心情? ", - mindbuf, sizeof(mindbuf), LCECHO); + mindbuf, sizeof(mindbuf), 0); if (strcmp(mindbuf, "通緝") == 0) vmsg("不可以把自己設通緝啦!"); else if (strcmp(mindbuf, "壽星") == 0) |