diff options
author | kcwu <kcwu@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2002-07-22 04:39:34 +0800 |
---|---|---|
committer | kcwu <kcwu@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2002-07-22 04:39:34 +0800 |
commit | 1357136003927f736b8d3e91c1970d4cc7861977 (patch) | |
tree | c3ae703bebaadc6d54926280fa0721718e50703f /mbbsd/screen.c | |
parent | 290e94c252bf0d1b384b3775cd9de04f5afa341a (diff) | |
download | pttbbs-1357136003927f736b8d3e91c1970d4cc7861977.tar pttbbs-1357136003927f736b8d3e91c1970d4cc7861977.tar.gz pttbbs-1357136003927f736b8d3e91c1970d4cc7861977.tar.bz2 pttbbs-1357136003927f736b8d3e91c1970d4cc7861977.tar.lz pttbbs-1357136003927f736b8d3e91c1970d4cc7861977.tar.xz pttbbs-1357136003927f736b8d3e91c1970d4cc7861977.tar.zst pttbbs-1357136003927f736b8d3e91c1970d4cc7861977.zip |
check the using of `sizeof' with strlcpy()
git-svn-id: http://opensvn.csie.org/pttbbs/pttbbs/trunk/pttbbs@432 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
Diffstat (limited to 'mbbsd/screen.c')
-rw-r--r-- | mbbsd/screen.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mbbsd/screen.c b/mbbsd/screen.c index 2650f5f9..59032a85 100644 --- a/mbbsd/screen.c +++ b/mbbsd/screen.c @@ -1,4 +1,4 @@ -/* $Id: screen.c,v 1.6 2002/07/21 09:26:02 in2 Exp $ */ +/* $Id: screen.c,v 1.7 2002/07/21 20:39:34 kcwu Exp $ */ #include "bbs.h" #ifdef SUPPORT_GB @@ -336,7 +336,7 @@ parsecolor(char *buf) } val = (char *)strtok(NULL, ";"); } - strlcpy(buf, data, sizeof(buf)); + strlcpy(buf, data, SIZEOF(buf)); } #define NORMAL (00) |