=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/ul/ul.c,v retrieving revision 1.4 retrieving revision 1.5 diff -c -r1.4 -r1.5 *** src/usr.bin/ul/ul.c 1997/01/15 23:43:27 1.4 --- src/usr.bin/ul/ul.c 2000/03/22 15:38:23 1.5 *************** *** 1,4 **** ! /* $OpenBSD: ul.c,v 1.4 1997/01/15 23:43:27 millert Exp $ */ /* $NetBSD: ul.c,v 1.3 1994/12/07 00:28:24 jtc Exp $ */ /* --- 1,4 ---- ! /* $OpenBSD: ul.c,v 1.5 2000/03/22 15:38:23 markus Exp $ */ /* $NetBSD: ul.c,v 1.3 1994/12/07 00:28:24 jtc Exp $ */ /* *************** *** 44,50 **** #if 0 static char sccsid[] = "@(#)ul.c 8.1 (Berkeley) 6/6/93"; #endif ! static char rcsid[] = "$OpenBSD: ul.c,v 1.4 1997/01/15 23:43:27 millert Exp $"; #endif /* not lint */ #include --- 44,50 ---- #if 0 static char sccsid[] = "@(#)ul.c 8.1 (Berkeley) 6/6/93"; #endif ! static char rcsid[] = "$OpenBSD: ul.c,v 1.5 2000/03/22 15:38:23 markus Exp $"; #endif /* not lint */ #include *************** *** 157,163 **** { register c; ! while ((c = getc(f)) != EOF) switch(c) { case '\b': if (col > 0) --- 157,163 ---- { register c; ! while ((c = getc(f)) != EOF && col < MAXBUF) switch(c) { case '\b': if (col > 0)