Subject: Quick sanity-check
To: None <tech-toolchain@netbsd.org>
From: Ben Harris <bjh21@netbsd.org>
List: tech-toolchain
Date: 04/23/2001 18:50:45
Since it's not my area, and I'm reluctant to believe the FSF would release
anything this stupid, can someone confirm that this patch is sensible to
commit (to make the -current gnu/dist/toolchain compile)?:
Index: archive.c
===================================================================
RCS file: /cvsroot/gnusrc/gnu/dist/toolchain/bfd/archive.c,v
retrieving revision 1.3
diff -u -r1.3 archive.c
--- archive.c 2001/04/23 14:16:34 1.3
+++ archive.c 2001/04/23 17:48:09
@@ -1484,7 +1484,7 @@
hpux_uid_gid_encode (hdr->ar_uid, (long) status.st_gid);
#else
fprintf (stderr, "%s: gid %ld truncated to 5 digits\n", filename, (long) status.st_gid);
- sprintf ((hdr->ar_gid), "%ld", (long) (status.st_gid % 100000);
+ sprintf ((hdr->ar_gid), "%ld", (long) (status.st_gid % 100000));
#endif
}
else
--
Ben Harris <bjh21@netbsd.org>
Portmaster, NetBSD/arm26 <URL:http://www.netbsd.org/Ports/arm26/>