diff options
author | in2 <in2@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2003-05-18 15:31:09 +0800 |
---|---|---|
committer | in2 <in2@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2003-05-18 15:31:09 +0800 |
commit | 2502fc38a34eaf5a146e502a0e87eccfe3283ed9 (patch) | |
tree | 677e4bb5bf0dea45abf6baf48d1ad18bed46e43e /mbbsd/friend.c | |
parent | 4c5f4c5f248509cd1e46ef308d52be1804181411 (diff) | |
download | pttbbs-2502fc38a34eaf5a146e502a0e87eccfe3283ed9.tar pttbbs-2502fc38a34eaf5a146e502a0e87eccfe3283ed9.tar.gz pttbbs-2502fc38a34eaf5a146e502a0e87eccfe3283ed9.tar.bz2 pttbbs-2502fc38a34eaf5a146e502a0e87eccfe3283ed9.tar.lz pttbbs-2502fc38a34eaf5a146e502a0e87eccfe3283ed9.tar.xz pttbbs-2502fc38a34eaf5a146e502a0e87eccfe3283ed9.tar.zst pttbbs-2502fc38a34eaf5a146e502a0e87eccfe3283ed9.zip |
warning free
git-svn-id: http://opensvn.csie.org/pttbbs/pttbbs/trunk/pttbbs@863 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
Diffstat (limited to 'mbbsd/friend.c')
-rw-r--r-- | mbbsd/friend.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/mbbsd/friend.c b/mbbsd/friend.c index 15fd35dc..127f9f5d 100644 --- a/mbbsd/friend.c +++ b/mbbsd/friend.c @@ -1,4 +1,4 @@ -/* $Id: friend.c,v 1.18 2003/05/16 08:25:10 ptt Exp $ */ +/* $Id: friend.c,v 1.19 2003/05/18 07:31:09 in2 Exp $ */ #include "bbs.h" /* ------------------------------------- */ @@ -95,11 +95,12 @@ friend_add(char *uident, int type, char* des) /* Thor: avoid uident run away when get data */ strlcpy(t_uident, uident, sizeof(t_uident)); - if (type != FRIEND_ALOHA && type != FRIEND_POST) + if (type != FRIEND_ALOHA && type != FRIEND_POST){ if(!des) getdata(2, 0, friend_desc[type], buf, sizeof(buf), DOECHO); else getdata_str(2, 0, friend_desc[type], buf, sizeof(buf), DOECHO, des); + } if ((fp = fopen(fpath, "a"))) { flock(fileno(fp), LOCK_EX); @@ -111,7 +112,7 @@ friend_add(char *uident, int type, char* des) } void -friend_special() +friend_special(void) { char genbuf[70], i, fname[70]; @@ -210,7 +211,7 @@ friend_append(int type, int count) void friend_delete(char *uident, int type) { - FILE *fp, *nfp; + FILE *fp, *nfp = NULL; char fn[80], fnnew[80]; char genbuf[200]; |