Changed bad call of fstat to stat

This commit is contained in:
Steve Chamberlain 1991-04-17 00:56:25 +00:00
parent 1f4d3c7911
commit 2a525d0c6c

View File

@ -1111,7 +1111,7 @@ bsd_write_armap (arch, elength, map, orl_count, stridx)
firstreal = mapsize + elength + sizeof (struct ar_hdr) + SARMAG;
fstat (arch->iostream, &statbuf); /* FIXME -- descriptor must be open! */
stat (arch->filename, &statbuf);
memset ((char *)(&hdr), 0, sizeof (struct ar_hdr));
sprintf (hdr.ar_name, "__.SYMDEF");
sprintf (hdr.ar_size, "%-10d", (int) mapsize);