summaryrefslogtreecommitdiff
path: root/remake.c
diff options
context:
space:
mode:
authorRoland McGrath <roland@redhat.com>1996-07-20 11:13:04 +0000
committerRoland McGrath <roland@redhat.com>1996-07-20 11:13:04 +0000
commit37ce7efdca1dc9b3f7c2f7b5fbb77398855ad27f (patch)
treea524489ddb3ed389c72a0c534ce2c6369995ab3e /remake.c
parent4b92c539d49a54db33b7ab1da40c11b12e94e752 (diff)
downloadgunmake-37ce7efdca1dc9b3f7c2f7b5fbb77398855ad27f.tar.gz
Sat Jul 20 12:32:10 1996 Klaus Kämpf (kkaempf@progis.de)
* remake.c (f_mtime) [VMS]: Add missing `if' conditional for future modtime check. * config.h-vms, makefile.vms, readme.vms, vmsify.c: Update address.
Diffstat (limited to 'remake.c')
-rw-r--r--remake.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/remake.c b/remake.c
index 7dc957d..3ff3639 100644
--- a/remake.c
+++ b/remake.c
@@ -1039,6 +1039,7 @@ f_mtime (file, search)
static unsigned long vms_now[2]; /* assumes 32 bit long ! */
sys$gettim (vms_now);
now = ((vms_now[0]>>24) & 0xff) + ((vms_now[1]<<8) & 0xffffff00);
+ if (mtime > now)
#else
extern time_t time ();
if (mtime > time (&now))