diff options
author | Paul Smith <psmith@gnu.org> | 1998-07-30 20:54:47 +0000 |
---|---|---|
committer | Paul Smith <psmith@gnu.org> | 1998-07-30 20:54:47 +0000 |
commit | e2403327e9913bbcbd515f9c38b8f4e26fb9b0d9 (patch) | |
tree | 8ac64ff471e0a976daf75ef913c084adba4972fc /arscan.c | |
parent | 65a7296e2c81b04761b3f024572310a02c9de691 (diff) | |
download | gunmake-e2403327e9913bbcbd515f9c38b8f4e26fb9b0d9.tar.gz |
GNU make release 3.77.
Diffstat (limited to 'arscan.c')
-rw-r--r-- | arscan.c | 9 |
1 files changed, 3 insertions, 6 deletions
@@ -600,15 +600,12 @@ ar_name_equal (name, mem, truncated) abort (); #else struct ar_hdr hdr; - return !strncmp (name, mem, - sizeof (hdr.ar_name) - #if !defined (__hpux) && !defined (cray) - 1 + return !strncmp (name, mem, sizeof(hdr.ar_name) - 1); #else - 2 + return !strncmp (name, mem, sizeof(hdr.ar_name) - 2); #endif /* !__hpux && !cray */ - ); -#endif +#endif /* !AIAMAG */ } #endif /* !VMS */ |