diff options
author | wens <wens@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2008-06-28 23:50:14 +0800 |
---|---|---|
committer | wens <wens@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2008-06-28 23:50:14 +0800 |
commit | 1347f95d83b908cd4e61904154feed6ae9ab7389 (patch) | |
tree | f2a81144fa8c7fe8bf874e5e5c0561186e0d7660 /common | |
parent | 4ba1777ffaa8cacae3651c0082f538c92b3a9bbb (diff) | |
download | pttbbs-1347f95d83b908cd4e61904154feed6ae9ab7389.tar pttbbs-1347f95d83b908cd4e61904154feed6ae9ab7389.tar.gz pttbbs-1347f95d83b908cd4e61904154feed6ae9ab7389.tar.bz2 pttbbs-1347f95d83b908cd4e61904154feed6ae9ab7389.tar.lz pttbbs-1347f95d83b908cd4e61904154feed6ae9ab7389.tar.xz pttbbs-1347f95d83b908cd4e61904154feed6ae9ab7389.tar.zst pttbbs-1347f95d83b908cd4e61904154feed6ae9ab7389.zip |
Reorder libraries.
Use time() in fhdr_stamp.c
git-svn-id: http://opensvn.csie.org/pttbbs/trunk/pttbbs@4384 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
Diffstat (limited to 'common')
-rw-r--r-- | common/bbs/fhdr_stamp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/bbs/fhdr_stamp.c b/common/bbs/fhdr_stamp.c index 6b81f909..05c9bccf 100644 --- a/common/bbs/fhdr_stamp.c +++ b/common/bbs/fhdr_stamp.c @@ -31,7 +31,7 @@ static inline int fhdr_stamp(char *fpath, fileheader_t *fh, int type) { char *ip = fpath; - time4_t dtime = time4(0); + time4_t dtime = time(0); struct tm ptime; int res = 0; |