summaryrefslogtreecommitdiffstats
path: root/mbbsd/record.c
diff options
context:
space:
mode:
authorvictor <victor@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2003-08-18 19:48:17 +0800
committervictor <victor@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2003-08-18 19:48:17 +0800
commitd6ec2525926e9cbd3afc4b06ccd0300b05ddb301 (patch)
tree392fb96c328623e76467817faf231711220fcdbd /mbbsd/record.c
parent522c7c914b0c8e3400684de08907f9748e42c97b (diff)
downloadpttbbs-d6ec2525926e9cbd3afc4b06ccd0300b05ddb301.tar
pttbbs-d6ec2525926e9cbd3afc4b06ccd0300b05ddb301.tar.gz
pttbbs-d6ec2525926e9cbd3afc4b06ccd0300b05ddb301.tar.bz2
pttbbs-d6ec2525926e9cbd3afc4b06ccd0300b05ddb301.tar.lz
pttbbs-d6ec2525926e9cbd3afc4b06ccd0300b05ddb301.tar.xz
pttbbs-d6ec2525926e9cbd3afc4b06ccd0300b05ddb301.tar.zst
pttbbs-d6ec2525926e9cbd3afc4b06ccd0300b05ddb301.zip
fix util merging error
git-svn-id: http://opensvn.csie.org/pttbbs/trunk/pttbbs@1107 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
Diffstat (limited to 'mbbsd/record.c')
-rw-r--r--mbbsd/record.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/mbbsd/record.c b/mbbsd/record.c
index 2bd06b16..e16b9404 100644
--- a/mbbsd/record.c
+++ b/mbbsd/record.c
@@ -1,4 +1,4 @@
-/* $Id: record.c,v 1.14 2003/06/28 08:47:45 kcwu Exp $ */
+/* $Id$ */
#include "bbs.h"
#undef HAVE_MMAP
@@ -467,7 +467,7 @@ int
stampfile(char *fpath, fileheader_t * fh)
{
register char *ip = fpath;
- time_t dtime = now;
+ time_t dtime = COMMON_TIME;
struct tm *ptime;
int fp = 0;
@@ -494,7 +494,7 @@ void
stampdir(char *fpath, fileheader_t * fh)
{
register char *ip = fpath;
- time_t dtime = now;
+ time_t dtime = COMMON_TIME;
struct tm *ptime;
if (access(fpath, X_OK | R_OK | W_OK))
@@ -516,7 +516,7 @@ void
stamplink(char *fpath, fileheader_t * fh)
{
register char *ip = fpath;
- time_t dtime = now;
+ time_t dtime = COMMON_TIME;
struct tm *ptime;
if (access(fpath, X_OK | R_OK | W_OK))