diff options
author | Roland McGrath <roland@redhat.com> | 1993-04-29 23:57:58 +0000 |
---|---|---|
committer | Roland McGrath <roland@redhat.com> | 1993-04-29 23:57:58 +0000 |
commit | 2b8171887602d1baa1b260bf8ca3c14235e0c55a (patch) | |
tree | 851e7ce3f0b143d5ca5995f087c4e32acbaaae3c /ar.c | |
parent | 6ee7823efe585f370f923182b4d61efe8b8bd389 (diff) | |
download | gunmake-2b8171887602d1baa1b260bf8ca3c14235e0c55a.tar.gz |
Formerly ar.c.~3~
Diffstat (limited to 'ar.c')
-rw-r--r-- | ar.c | 9 |
1 files changed, 6 insertions, 3 deletions
@@ -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; } /* Set the archive-member NAME's modtime to now. */ |