From 6ca11a7da707b6db738532276d58829ab5d7a816 Mon Sep 17 00:00:00 2001 From: lukem Date: Thu, 24 May 2007 02:51:41 +0000 Subject: [PATCH] Revert previous "64bit fix" because it actually removed desired functionality. Instead, use the appropriate format specifier & cast to display the time_t. --- usr.bin/ftp/util.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/usr.bin/ftp/util.c b/usr.bin/ftp/util.c index 6e952b643e9b..354b7470bcdf 100644 --- a/usr.bin/ftp/util.c +++ b/usr.bin/ftp/util.c @@ -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 #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;