=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/tr/str.c,v retrieving revision 1.4 retrieving revision 1.5 diff -c -r1.4 -r1.5 *** src/usr.bin/tr/str.c 1997/07/25 21:14:04 1.4 --- src/usr.bin/tr/str.c 1998/12/07 18:23:29 1.5 *************** *** 1,4 **** ! /* $OpenBSD: str.c,v 1.4 1997/07/25 21:14:04 mickey Exp $ */ /* $NetBSD: str.c,v 1.7 1995/08/31 22:13:47 jtc Exp $ */ /*- --- 1,4 ---- ! /* $OpenBSD: str.c,v 1.5 1998/12/07 18:23:29 deraadt Exp $ */ /* $NetBSD: str.c,v 1.7 1995/08/31 22:13:47 jtc Exp $ */ /*- *************** *** 38,44 **** #if 0 static char sccsid[] = "@(#)str.c 8.2 (Berkeley) 4/28/95"; #endif ! static char rcsid[] = "$OpenBSD: str.c,v 1.4 1997/07/25 21:14:04 mickey Exp $"; #endif /* not lint */ #include --- 38,44 ---- #if 0 static char sccsid[] = "@(#)str.c 8.2 (Berkeley) 4/28/95"; #endif ! static char rcsid[] = "$OpenBSD: str.c,v 1.5 1998/12/07 18:23:29 deraadt Exp $"; #endif /* not lint */ #include *************** *** 167,173 **** { "digit", isdigit, }, { "graph", isgraph, }, { "lower", islower, }, ! { "print", isupper, }, { "punct", ispunct, }, { "space", isspace, }, { "upper", isupper, }, --- 167,173 ---- { "digit", isdigit, }, { "graph", isgraph, }, { "lower", islower, }, ! { "print", isprint, }, { "punct", ispunct, }, { "space", isspace, }, { "upper", isupper, },