=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/whatis/Attic/whatis.c,v retrieving revision 1.11 retrieving revision 1.12 diff -u -r1.11 -r1.12 --- src/usr.bin/whatis/Attic/whatis.c 2006/04/02 21:38:56 1.11 +++ src/usr.bin/whatis/Attic/whatis.c 2007/03/20 03:56:13 1.12 @@ -1,4 +1,4 @@ -/* $OpenBSD: whatis.c,v 1.11 2006/04/02 21:38:56 djm Exp $ */ +/* $OpenBSD: whatis.c,v 1.12 2007/03/20 03:56:13 tedu Exp $ */ /* * Copyright (c) 1987, 1993 @@ -185,7 +185,7 @@ break; /* check for word match first */ - for (start = bp++; *bp && (*bp == '_' || isalnum(*bp)); ++bp) + for (start = bp++; *bp == '_' || isalnum(*bp); ++bp) ; if (bp - start == len) { if (strncasecmp(start, str, len) == 0)