diff options
author | kcwu <kcwu@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2003-01-16 19:53:54 +0800 |
---|---|---|
committer | kcwu <kcwu@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2003-01-16 19:53:54 +0800 |
commit | 9e13f340dd064d257119acdf7697a90f582d9159 (patch) | |
tree | 708df93a9dc6676fe91e692b5198304bf11b8442 | |
parent | 1277c9996112ad4386111dbd027f9c04e0fc0077 (diff) | |
download | pttbbs-9e13f340dd064d257119acdf7697a90f582d9159.tar pttbbs-9e13f340dd064d257119acdf7697a90f582d9159.tar.gz pttbbs-9e13f340dd064d257119acdf7697a90f582d9159.tar.bz2 pttbbs-9e13f340dd064d257119acdf7697a90f582d9159.tar.lz pttbbs-9e13f340dd064d257119acdf7697a90f582d9159.tar.xz pttbbs-9e13f340dd064d257119acdf7697a90f582d9159.tar.zst pttbbs-9e13f340dd064d257119acdf7697a90f582d9159.zip |
code clean up
git-svn-id: http://opensvn.csie.org/pttbbs/pttbbs/trunk@601 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
-rw-r--r-- | pttbbs/mbbsd/screen.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/pttbbs/mbbsd/screen.c b/pttbbs/mbbsd/screen.c index eefdbbea..23aa9e71 100644 --- a/pttbbs/mbbsd/screen.c +++ b/pttbbs/mbbsd/screen.c @@ -1,4 +1,4 @@ -/* $Id: screen.c,v 1.13 2002/09/11 10:33:11 kcwu Exp $ */ +/* $Id: screen.c,v 1.14 2003/01/16 11:53:54 kcwu Exp $ */ #include "bbs.h" #ifdef SUPPORT_GB @@ -379,7 +379,7 @@ outc(unsigned char ch) if (ch == 'm') { buf[p++] = '\0'; parsecolor(buf); - } else if ((p < 24) && (not_alpha(ch))) { + } else if ((p < sizeof(buf)) && (not_alpha(ch))) { buf[p++] = ch; return; } @@ -387,8 +387,8 @@ outc(unsigned char ch) outch(''); outch('['); - for (i = 0; (p = buf[i]); i++) - outch(p); + for (i = 0; buf[i]; i++) + outch(buf[i]); outch(ch); } p = 0; |