=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/column/column.c,v retrieving revision 1.11 retrieving revision 1.12 diff -c -r1.11 -r1.12 *** src/usr.bin/column/column.c 2006/03/10 19:14:58 1.11 --- src/usr.bin/column/column.c 2007/03/20 03:50:39 1.12 *************** *** 1,4 **** ! /* $OpenBSD: column.c,v 1.11 2006/03/10 19:14:58 otto Exp $ */ /* $NetBSD: column.c,v 1.4 1995/09/02 05:53:03 jtc Exp $ */ /* --- 1,4 ---- ! /* $OpenBSD: column.c,v 1.12 2007/03/20 03:50:39 tedu Exp $ */ /* $NetBSD: column.c,v 1.4 1995/09/02 05:53:03 jtc Exp $ */ /* *************** *** 40,46 **** #if 0 static char sccsid[] = "@(#)column.c 8.4 (Berkeley) 5/4/95"; #endif ! static char rcsid[] = "$OpenBSD: column.c,v 1.11 2006/03/10 19:14:58 otto Exp $"; #endif /* not lint */ #include --- 40,46 ---- #if 0 static char sccsid[] = "@(#)column.c 8.4 (Berkeley) 5/4/95"; #endif ! static char rcsid[] = "$OpenBSD: column.c,v 1.12 2007/03/20 03:50:39 tedu Exp $"; #endif /* not lint */ #include *************** *** 264,270 **** if (!list) list = emalloc((maxentry = DEFNUM) * sizeof(char *)); while (fgets(buf, MAXLINELEN, fp)) { ! for (p = buf; *p && isspace(*p); ++p); if (!*p) continue; if (!(p = strchr(p, '\n'))) { --- 264,270 ---- if (!list) list = emalloc((maxentry = DEFNUM) * sizeof(char *)); while (fgets(buf, MAXLINELEN, fp)) { ! for (p = buf; isspace(*p); ++p); if (!*p) continue; if (!(p = strchr(p, '\n'))) {