diff options
author | piaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2008-03-29 04:10:48 +0800 |
---|---|---|
committer | piaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2008-03-29 04:10:48 +0800 |
commit | 0ace497393eb307eaf61abc8535c9ed9646dcacb (patch) | |
tree | e09ea4d62c49bf584d9b59723d42dda359e7519e /mbbsd | |
parent | b4cfd7600a14957e4d75a0a84dc3dcb4fe3c15b9 (diff) | |
download | pttbbs-0ace497393eb307eaf61abc8535c9ed9646dcacb.tar pttbbs-0ace497393eb307eaf61abc8535c9ed9646dcacb.tar.gz pttbbs-0ace497393eb307eaf61abc8535c9ed9646dcacb.tar.bz2 pttbbs-0ace497393eb307eaf61abc8535c9ed9646dcacb.tar.lz pttbbs-0ace497393eb307eaf61abc8535c9ed9646dcacb.tar.xz pttbbs-0ace497393eb307eaf61abc8535c9ed9646dcacb.tar.zst pttbbs-0ace497393eb307eaf61abc8535c9ed9646dcacb.zip |
- fix compile error for regform1
git-svn-id: http://opensvn.csie.org/pttbbs/trunk/pttbbs@4036 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
Diffstat (limited to 'mbbsd')
-rw-r--r-- | mbbsd/register.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mbbsd/register.c b/mbbsd/register.c index face58b2..d78d2144 100644 --- a/mbbsd/register.c +++ b/mbbsd/register.c @@ -964,6 +964,7 @@ u_register(void) #else fn = fopen(fn_register, "rt"); while (fn && fgets(genbuf, STRLEN, fn)) { + char *ptr; if (strncmp(genbuf, "uid: ", 5) != 0) continue; i++; |