=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/uniq/uniq.c,v retrieving revision 1.5 retrieving revision 1.5.12.1 diff -c -r1.5 -r1.5.12.1 *** src/usr.bin/uniq/uniq.c 1997/07/25 22:21:40 1.5 --- src/usr.bin/uniq/uniq.c 2000/10/06 21:16:17 1.5.12.1 *************** *** 1,4 **** ! /* $OpenBSD: uniq.c,v 1.5 1997/07/25 22:21:40 mickey Exp $ */ /* $NetBSD: uniq.c,v 1.7 1995/08/31 22:03:48 jtc Exp $ */ /* --- 1,4 ---- ! /* $OpenBSD: uniq.c,v 1.5.12.1 2000/10/06 21:16:17 jason Exp $ */ /* $NetBSD: uniq.c,v 1.7 1995/08/31 22:03:48 jtc Exp $ */ /* *************** *** 47,53 **** #if 0 static char sccsid[] = "@(#)uniq.c 8.3 (Berkeley) 5/4/95"; #endif ! static char rcsid[] = "$OpenBSD: uniq.c,v 1.5 1997/07/25 22:21:40 mickey Exp $"; #endif /* not lint */ #include --- 47,53 ---- #if 0 static char sccsid[] = "@(#)uniq.c 8.3 (Berkeley) 5/4/95"; #endif ! static char rcsid[] = "$OpenBSD: uniq.c,v 1.5.12.1 2000/10/06 21:16:17 jason Exp $"; #endif /* not lint */ #include *************** *** 210,216 **** FILE *fp; if ((fp = fopen(name, mode)) == NULL) ! err(1, name); return(fp); } --- 210,216 ---- FILE *fp; if ((fp = fopen(name, mode)) == NULL) ! err(1, "%s", name); return(fp); }