diff options
author | in2 <in2@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2002-03-10 01:44:39 +0800 |
---|---|---|
committer | in2 <in2@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2002-03-10 01:44:39 +0800 |
commit | dc1e907c2cf1038a9dc24a4f4969a8403097bd85 (patch) | |
tree | ad37009f7662f3204509a196b8eaa74f0586e37f /util/inndBM.c | |
parent | 90451291f8f509d0f0e3f1c442bb3325de30d9b0 (diff) | |
download | pttbbs-dc1e907c2cf1038a9dc24a4f4969a8403097bd85.tar pttbbs-dc1e907c2cf1038a9dc24a4f4969a8403097bd85.tar.gz pttbbs-dc1e907c2cf1038a9dc24a4f4969a8403097bd85.tar.bz2 pttbbs-dc1e907c2cf1038a9dc24a4f4969a8403097bd85.tar.lz pttbbs-dc1e907c2cf1038a9dc24a4f4969a8403097bd85.tar.xz pttbbs-dc1e907c2cf1038a9dc24a4f4969a8403097bd85.tar.zst pttbbs-dc1e907c2cf1038a9dc24a4f4969a8403097bd85.zip |
no warning
git-svn-id: http://opensvn.csie.org/pttbbs/pttbbs/trunk/pttbbs@16 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
Diffstat (limited to 'util/inndBM.c')
-rw-r--r-- | util/inndBM.c | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/util/inndBM.c b/util/inndBM.c index 426fa6f5..4f85bfd4 100644 --- a/util/inndBM.c +++ b/util/inndBM.c @@ -1,12 +1,16 @@ /* 依據 .BOARD檔 & newsfeeds.bbs 列出參與轉信的所有板資料 */ #include <stdio.h> +#include <stdlib.h> #include <string.h> #include <sys/types.h> #include <sys/ipc.h> #include <sys/shm.h> +#include <sys/stat.h> #include "config.h" #include "pttstruct.h" +#include "proto.h" + #define INNDHOME BBSHOME"/innd" #define INND_NEWSFEED INNDHOME "/newsfeeds.bbs" @@ -39,12 +43,12 @@ newsfeed_t feedline[MAX_BOARD]; int servercount; int feedcount; -int newsfeed_cmp(newsfeed_t *a,newsfeed_t *b) +int newsfeed_cmp(const void *a, const void *b) { int i; - i=strcasecmp(a->server,b->server); + i=strcasecmp(((newsfeed_t*)a)->server,((newsfeed_t*)b)->server); if(i) return i; - return strcasecmp(a->board,b->board); + return strcasecmp(((newsfeed_t*)a)->board,((newsfeed_t*)b)->board); } int get_server(char *name) |