diff options
author | scw <scw@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2004-04-02 16:23:19 +0800 |
---|---|---|
committer | scw <scw@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2004-04-02 16:23:19 +0800 |
commit | eb86d8ff553917f392c556ef3a4b846910b1a17a (patch) | |
tree | 31c589739ddd4ecd6f144790dafb6fea654685e6 /mbbsd/chc.c | |
parent | 09d73f6f75cb15e6882403ef143705da4fee64bf (diff) | |
download | pttbbs-eb86d8ff553917f392c556ef3a4b846910b1a17a.tar pttbbs-eb86d8ff553917f392c556ef3a4b846910b1a17a.tar.gz pttbbs-eb86d8ff553917f392c556ef3a4b846910b1a17a.tar.bz2 pttbbs-eb86d8ff553917f392c556ef3a4b846910b1a17a.tar.lz pttbbs-eb86d8ff553917f392c556ef3a4b846910b1a17a.tar.xz pttbbs-eb86d8ff553917f392c556ef3a4b846910b1a17a.tar.zst pttbbs-eb86d8ff553917f392c556ef3a4b846910b1a17a.zip |
Fix warning, including:
Prototype differance of crypt() on linux.
Adding _ISOC99_SOURCE to get declaration of snprintf() on linux.
Including strings.h to get declaration of strcasecmp() on linux.
Using mkstemp() instead of tempnam().
git-svn-id: http://opensvn.csie.org/pttbbs/trunk/pttbbs@1679 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
Diffstat (limited to 'mbbsd/chc.c')
-rw-r--r-- | mbbsd/chc.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/mbbsd/chc.c b/mbbsd/chc.c index e9f043fd..249b2d98 100644 --- a/mbbsd/chc.c +++ b/mbbsd/chc.c @@ -305,7 +305,11 @@ chc_log_step(board_t board, rc_t *from, rc_t *to) } static int +#ifdef __linux__ +chc_filter(const struct dirent *dir) +#else chc_filter(struct dirent *dir) +#endif { if (strcmp(dir->d_name, ".") == 0 || strcmp(dir->d_name, "..") == 0 ) return 0; |