summaryrefslogtreecommitdiffstats
path: root/mbbsd/user.c
diff options
context:
space:
mode:
authorpiaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2005-06-08 02:22:28 +0800
committerpiaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2005-06-08 02:22:28 +0800
commitaea26921bba887c188366004c6919370ba8991cd (patch)
treea7911065c08bf18419f34c806c48be1ff2ca0681 /mbbsd/user.c
parent9261dc82c1f7d4dcac8f76453804968ee94967e5 (diff)
downloadpttbbs-aea26921bba887c188366004c6919370ba8991cd.tar
pttbbs-aea26921bba887c188366004c6919370ba8991cd.tar.gz
pttbbs-aea26921bba887c188366004c6919370ba8991cd.tar.bz2
pttbbs-aea26921bba887c188366004c6919370ba8991cd.tar.lz
pttbbs-aea26921bba887c188366004c6919370ba8991cd.tar.xz
pttbbs-aea26921bba887c188366004c6919370ba8991cd.tar.zst
pttbbs-aea26921bba887c188366004c6919370ba8991cd.zip
user customization: should be case insensitive
git-svn-id: http://opensvn.csie.org/pttbbs/trunk/pttbbs@2792 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
Diffstat (limited to 'mbbsd/user.c')
-rw-r--r--mbbsd/user.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mbbsd/user.c b/mbbsd/user.c
index 9cd8a3fb..d8816c6e 100644
--- a/mbbsd/user.c
+++ b/mbbsd/user.c
@@ -310,7 +310,7 @@ void Customize(void)
#endif
key = getkey("½Ð«ö [A-%c] ¤Á´«³]©w¡A«ö [Return] µ²§ô¡G", maxc);
- switch (key) {
+ switch (tolower(key)) {
case 'a':{
int currentset = cuser.uflag2 & WATER_MASK;
currentset = (currentset + 1) % 3;