=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/ar/Attic/replace.c,v retrieving revision 1.2 retrieving revision 1.3 diff -c -r1.2 -r1.3 *** src/usr.bin/ar/Attic/replace.c 1996/06/26 05:31:23 1.2 --- src/usr.bin/ar/Attic/replace.c 1997/06/17 20:47:09 1.3 *************** *** 1,4 **** ! /* $OpenBSD: replace.c,v 1.2 1996/06/26 05:31:23 deraadt Exp $ */ /* $NetBSD: replace.c,v 1.6 1995/03/26 03:28:01 glass Exp $ */ /*- --- 1,4 ---- ! /* $OpenBSD: replace.c,v 1.3 1997/06/17 20:47:09 kstailey Exp $ */ /* $NetBSD: replace.c,v 1.6 1995/03/26 03:28:01 glass Exp $ */ /*- *************** *** 41,47 **** #if 0 static char sccsid[] = "@(#)replace.c 8.3 (Berkeley) 4/2/94"; #else ! static char rcsid[] = "$OpenBSD: replace.c,v 1.2 1996/06/26 05:31:23 deraadt Exp $"; #endif #endif /* not lint */ --- 41,47 ---- #if 0 static char sccsid[] = "@(#)replace.c 8.3 (Berkeley) 4/2/94"; #else ! static char rcsid[] = "$OpenBSD: replace.c,v 1.3 1997/06/17 20:47:09 kstailey Exp $"; #endif #endif /* not lint */ *************** *** 131,143 **** curfd = tfd2; /* Read and write to an archive; pad on both. */ SETCF(afd, archive, curfd, tname, RPAD|WPAD); ! put_arobj(&cf, (struct stat *)NULL); if (options & AR_A) curfd = tfd2; } else { /* Read and write to an archive; pad on both. */ useold: SETCF(afd, archive, curfd, tname, RPAD|WPAD); ! put_arobj(&cf, (struct stat *)NULL); } } --- 131,143 ---- curfd = tfd2; /* Read and write to an archive; pad on both. */ SETCF(afd, archive, curfd, tname, RPAD|WPAD); ! put_arobj(&cf, NULL); if (options & AR_A) curfd = tfd2; } else { /* Read and write to an archive; pad on both. */ useold: SETCF(afd, archive, curfd, tname, RPAD|WPAD); ! put_arobj(&cf, NULL); } }