summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorderaadt <deraadt@openbsd.org>1998-02-14 08:52:06 +0000
committerderaadt <deraadt@openbsd.org>1998-02-14 08:52:06 +0000
commit32e55df3c6a65589820e0eb4e6ee7dcefdec2d89 (patch)
tree288e6118b6eeb0d16d87dde049c13d60f837e99d
parentsync (diff)
downloadwireguard-openbsd-32e55df3c6a65589820e0eb4e6ee7dcefdec2d89.tar.xz
wireguard-openbsd-32e55df3c6a65589820e0eb4e6ee7dcefdec2d89.zip
recog STRIPDISC; kleink
-rw-r--r--bin/stty/print.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/bin/stty/print.c b/bin/stty/print.c
index afbc5920a4a..8f81f2cf2d3 100644
--- a/bin/stty/print.c
+++ b/bin/stty/print.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: print.c,v 1.6 1997/09/01 18:30:34 deraadt Exp $ */
+/* $OpenBSD: print.c,v 1.7 1998/02/14 08:52:06 deraadt Exp $ */
/* $NetBSD: print.c,v 1.11 1996/05/07 18:20:10 jtc Exp $ */
/*-
@@ -38,7 +38,7 @@
#if 0
static char sccsid[] = "@(#)print.c 8.6 (Berkeley) 4/16/94";
#else
-static char rcsid[] = "$OpenBSD: print.c,v 1.6 1997/09/01 18:30:34 deraadt Exp $";
+static char rcsid[] = "$OpenBSD: print.c,v 1.7 1998/02/14 08:52:06 deraadt Exp $";
#endif
#endif /* not lint */
@@ -82,6 +82,9 @@ print(tp, wp, ldisc, fmt)
case PPPDISC:
cnt += printf("ppp disc; ");
break;
+ case STRIPDISC:
+ cnt += printf("strip disc; ");
+ break;
default:
cnt += printf("#%d disc; ", ldisc);
break;