Revert previous "64bit fix" because it actually removed desired functionality.

Instead, use the appropriate format specifier & cast to display the time_t.
This commit is contained in:
lukem 2007-05-24 02:51:41 +00:00
parent 9cdcc01daf
commit 6ca11a7da7

View File

@ -1,4 +1,4 @@
/* $NetBSD: util.c,v 1.141 2007/05/22 18:02:18 tnn Exp $ */
/* $NetBSD: util.c,v 1.142 2007/05/24 02:51:41 lukem Exp $ */
/*-
* Copyright (c) 1997-2007 The NetBSD Foundation, Inc.
@ -71,7 +71,7 @@
#include <sys/cdefs.h>
#ifndef lint
__RCSID("$NetBSD: util.c,v 1.141 2007/05/22 18:02:18 tnn Exp $");
__RCSID("$NetBSD: util.c,v 1.142 2007/05/24 02:51:41 lukem Exp $");
#endif /* not lint */
/*
@ -763,8 +763,8 @@ remotemodtime(const char *file, int noisy)
else
goto cleanup_parse_time;
} else
DPRINTF("parsed date `%s' as %s",
timestr, ctime(&rtime));
DPRINTF("parsed date `%s' as " LLF ", %s",
timestr, (LLT)rtime, ctime(&rtime));
} else {
if (r == ERROR && code == 500 && features[FEAT_MDTM] == -1)
features[FEAT_MDTM] = 0;