diff options
author | Roland McGrath <roland@redhat.com> | 1994-02-16 21:32:01 +0000 |
---|---|---|
committer | Roland McGrath <roland@redhat.com> | 1994-02-16 21:32:01 +0000 |
commit | d68bb0895be0a78b26de5a9e88e36196e21429fc (patch) | |
tree | 36bb5ee1b62af41c050b2c7eae00a2e7e6867f23 /arscan.c | |
parent | 29b051dc0c5d983037f5793b60874073f71cddbb (diff) | |
download | gunmake-d68bb0895be0a78b26de5a9e88e36196e21429fc.tar.gz |
entered into RCS
Diffstat (limited to 'arscan.c')
-rw-r--r-- | arscan.c | 10 |
1 files changed, 8 insertions, 2 deletions
@@ -1,5 +1,5 @@ /* Library function for scanning an archive file. - Copyright (C) 1987, 1989, 1991, 1992, 1993 Free Software Foundation, Inc. + Copyright (C) 1987, 89, 91, 92, 93, 94 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -428,7 +428,13 @@ ar_name_equal (name, mem, truncated) #else struct ar_hdr hdr; return !strncmp (name, mem, - sizeof (hdr.ar_name) - 1); + sizeof (hdr.ar_name) - +#ifndef __hpux + 1 +#else + 2 +#endif /* __hpux */ + ); #endif } |