diff options
author | Martin Pieuchot <mpi@cvs.openbsd.org> | 2016-11-26 11:18:44 +0000 |
---|---|---|
committer | Martin Pieuchot <mpi@cvs.openbsd.org> | 2016-11-26 11:18:44 +0000 |
commit | ea9c311c1abd5aa071690583a04a0a44ceb444d9 (patch) | |
tree | 24ead16dc764d85d291b0d61f2884035a3098c78 /usr.sbin/pstat | |
parent | 73d10613859bbc1c21b5a26746b6ad18eb184e9d (diff) |
Remove leftovers of line disciplines that are no more.
ok mikeb@
Diffstat (limited to 'usr.sbin/pstat')
-rw-r--r-- | usr.sbin/pstat/pstat.8 | 12 | ||||
-rw-r--r-- | usr.sbin/pstat/pstat.c | 11 |
2 files changed, 4 insertions, 19 deletions
diff --git a/usr.sbin/pstat/pstat.8 b/usr.sbin/pstat/pstat.8 index 627ff32a8b4..e4b94194169 100644 --- a/usr.sbin/pstat/pstat.8 +++ b/usr.sbin/pstat/pstat.8 @@ -1,4 +1,4 @@ -.\" $OpenBSD: pstat.8,v 1.51 2016/09/25 15:23:37 deraadt Exp $ +.\" $OpenBSD: pstat.8,v 1.52 2016/11/26 11:18:43 mpi Exp $ .\" $NetBSD: pstat.8,v 1.9.4.1 1996/06/02 09:08:17 mrg Exp $ .\" .\" Copyright (c) 1980, 1991, 1993, 1994 @@ -30,7 +30,7 @@ .\" .\" from: @(#)pstat.8 8.4 (Berkeley) 4/19/94 .\" -.Dd $Mdocdate: September 25 2016 $ +.Dd $Mdocdate: November 26 2016 $ .Dt PSTAT 8 .Os .Sh NAME @@ -212,15 +212,9 @@ Line discipline: for TTYDISC (see .Xr termios 4 ) , -.Ql slip -for SLIPDISC , .Ql ppp for PPPDISC (see -.Xr ppp 4 ) , -.Ql strip -for STRIPDISC, -.\" (see -.\" .Xr strip 4 ) . +.Xr ppp 4 ) and .Ql nmea for NMEADISC (see diff --git a/usr.sbin/pstat/pstat.c b/usr.sbin/pstat/pstat.c index 864d04bd4ca..ff26403a14c 100644 --- a/usr.sbin/pstat/pstat.c +++ b/usr.sbin/pstat/pstat.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pstat.c,v 1.111 2016/10/23 18:14:01 kettenis Exp $ */ +/* $OpenBSD: pstat.c,v 1.112 2016/11/26 11:18:43 mpi Exp $ */ /* $NetBSD: pstat.c,v 1.27 1996/10/23 22:50:06 cgd Exp $ */ /*- @@ -989,18 +989,9 @@ ttyprt(struct itty *tp) case TTYDISC: (void)printf("term\n"); break; - case TABLDISC: - (void)printf("tab\n"); - break; - case SLIPDISC: - (void)printf("slip\n"); - break; case PPPDISC: (void)printf("ppp\n"); break; - case STRIPDISC: - (void)printf("strip\n"); - break; case NMEADISC: (void)printf("nmea\n"); break; |