]> git.ipfire.org Git - thirdparty/make.git/commitdiff
Formerly ar.c.~3~
authorRoland McGrath <roland@redhat.com>
Thu, 29 Apr 1993 23:57:58 +0000 (23:57 +0000)
committerRoland McGrath <roland@redhat.com>
Thu, 29 Apr 1993 23:57:58 +0000 (23:57 +0000)
ar.c

diff --git a/ar.c b/ar.c
index 89e108c6992cc3a4004fda40c0142c2017b44050..3d6e07596005f2dbec40cc6b168be6c523180197 100644 (file)
--- a/ar.c
+++ b/ar.c
@@ -1,4 +1,5 @@
-/* Copyright (C) 1988, 1989, 1990, 1991, 1992 Free Software Foundation, Inc.
+/* Copyright (C) 1988, 1989, 1990, 1991, 1992, 1993
+       Free Software Foundation, Inc.
 This file is part of GNU Make.
 
 GNU Make is free software; you can redistribute it and/or modify
@@ -107,14 +108,16 @@ ar_member_date (name)
 
 /* ARGSUSED */
 static long int
-ar_member_date_1 (desc, mem, hdrpos, datapos, size, date, uid, gid, mode, name)
+ar_member_date_1 (desc, mem, truncated,
+                 hdrpos, datapos, size, date, uid, gid, mode, name)
      int desc;
      char *mem;
+     int truncated;
      long int hdrpos, datapos, size, date;
      int uid, gid, mode;
      char *name;
 {
-  return ar_name_equal (name, mem) ? date : 0;
+  return ar_name_equal (name, mem, truncated) ? date : 0;
 }
 \f
 /* Set the archive-member NAME's modtime to now.  */