From 2d9a2285efeefa07b1e51441cecaadce92de9af1 Mon Sep 17 00:00:00 2001 From: tjr Date: Wed, 29 May 2002 23:55:44 +0000 Subject: Fields should be separated by s, not s according to P1003.2. --- usr.bin/uniq/uniq.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'usr.bin/uniq') diff --git a/usr.bin/uniq/uniq.c b/usr.bin/uniq/uniq.c index 4317ede..2d2b980 100644 --- a/usr.bin/uniq/uniq.c +++ b/usr.bin/uniq/uniq.c @@ -200,7 +200,7 @@ skip(str) register int infield, nchars, nfields; for (nfields = numfields, infield = 0; nfields && *str; ++str) - if (isspace((unsigned char)*str)) { + if (isblank((unsigned char)*str)) { if (infield) { infield = 0; --nfields; -- cgit v1.1