From 4972b017b63f3ce324bfa65a1b46a2a173baf463 Mon Sep 17 00:00:00 2001 From: Paul Smith Date: Tue, 13 Jun 2000 05:22:52 +0000 Subject: * Some timestamp fixes from Paul Eggert. * Fix compilation on Linux; use libintl.h and not gettext.h when using the system gettext. --- vpath.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'vpath.c') diff --git a/vpath.c b/vpath.c index 2288f9a..000db97 100644 --- a/vpath.c +++ b/vpath.c @@ -525,10 +525,10 @@ selective_vpath_search (path, file, mtime_ptr) if (mtime_ptr != 0) /* Store the modtime into *MTIME_PTR for the caller. If we have had no need to stat the file here, - we record a zero modtime to indicate this. */ + we record UNKNOWN_MTIME to indicate this. */ *mtime_ptr = (exists_in_cache - ? FILE_TIMESTAMP_STAT_MODTIME (st) - : (FILE_TIMESTAMP) 0); + ? FILE_TIMESTAMP_STAT_MODTIME (name, st) + : UNKNOWN_MTIME); free (name); return 1; -- cgit v1.2.3