summaryrefslogtreecommitdiff
path: root/libexec
diff options
context:
space:
mode:
authorcgd <cgd@NetBSD.org>1994-04-16 05:15:51 +0000
committercgd <cgd@NetBSD.org>1994-04-16 05:15:51 +0000
commit41a949b1b44493528fa6dc39c8e965b521d2f31f (patch)
treebe2d16ed198cc5fbe241964a1b44c66ee7ac0638 /libexec
parent353d8f840de3b472a9284b2fffcfa1aff8374b65 (diff)
renamed 'md' to 'mb'
Diffstat (limited to 'libexec')
-rw-r--r--libexec/getty/gettytab.54
-rw-r--r--libexec/getty/gettytab.h4
-rw-r--r--libexec/getty/init.c4
-rw-r--r--libexec/getty/subr.c4
4 files changed, 8 insertions, 8 deletions
diff --git a/libexec/getty/gettytab.5 b/libexec/getty/gettytab.5
index 138fa40510e..afc7fb315d3 100644
--- a/libexec/getty/gettytab.5
+++ b/libexec/getty/gettytab.5
@@ -30,7 +30,7 @@
.\" SUCH DAMAGE.
.\"
.\" from: @(#)gettytab.5 6.7 (Berkeley) 5/10/91
-.\" $Id: gettytab.5,v 1.4 1994/04/16 03:45:24 cgd Exp $
+.\" $Id: gettytab.5,v 1.5 1994/04/16 05:15:51 cgd Exp $
.\"
.Dd May 10, 1991
.Dt GETTYTAB 5
@@ -130,7 +130,7 @@ hangup line on last close
.No "``literal next'' character"
.It "lo str" Ta Pa /usr/bin/login Ta
.No "program to exec when name obtained"
-.It "md bool false do flow control based on carrier"
+.It "mb bool false do flow control based on carrier"
.It "nd num 0 newline (line-feed) delay"
.It "nl bool false terminal has (or might have) a newline character"
.It "np bool false terminal uses no parity (i.e. 8-bit characters)"
diff --git a/libexec/getty/gettytab.h b/libexec/getty/gettytab.h
index c869f1fc302..f9a086b9fad 100644
--- a/libexec/getty/gettytab.h
+++ b/libexec/getty/gettytab.h
@@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* from: @(#)gettytab.h 5.5 (Berkeley) 3/27/91
- * $Id: gettytab.h,v 1.4 1994/04/16 03:45:25 cgd Exp $
+ * $Id: gettytab.h,v 1.5 1994/04/16 05:15:52 cgd Exp $
*/
/*
@@ -134,7 +134,7 @@ struct gettyflags {
#define AB gettyflags[19].value
#define DX gettyflags[20].value
#define NP gettyflags[21].value
-#define MD gettyflags[22].value
+#define MB gettyflags[22].value
int getent();
long getnum();
diff --git a/libexec/getty/init.c b/libexec/getty/init.c
index 65200c8356f..6bf35883ee0 100644
--- a/libexec/getty/init.c
+++ b/libexec/getty/init.c
@@ -33,7 +33,7 @@
#ifndef lint
/*static char sccsid[] = "from: @(#)init.c 5.6 (Berkeley) 3/27/91";*/
-static char rcsid[] = "$Id: init.c,v 1.3 1994/04/16 03:45:28 cgd Exp $";
+static char rcsid[] = "$Id: init.c,v 1.4 1994/04/16 05:15:53 cgd Exp $";
#endif /* not lint */
/*
@@ -118,6 +118,6 @@ struct gettyflags gettyflags[] = {
{ "ab", 0 }, /* auto-baud detect with '\r' */
{ "dx", 0 }, /* set decctlq */
{ "np", 0 }, /* no parity at all (8bit chars) */
- { "md", 0 }, /* do MDMBUF flow control */
+ { "mb", 0 }, /* do MDMBUF flow control */
{ 0 }
};
diff --git a/libexec/getty/subr.c b/libexec/getty/subr.c
index 5ef7beb5e3a..89b9da8e35e 100644
--- a/libexec/getty/subr.c
+++ b/libexec/getty/subr.c
@@ -33,7 +33,7 @@
#ifndef lint
/*static char sccsid[] = "from: @(#)subr.c 5.10 (Berkeley) 2/26/91";*/
-static char rcsid[] = "$Id: subr.c,v 1.5 1994/04/16 03:45:29 cgd Exp $";
+static char rcsid[] = "$Id: subr.c,v 1.6 1994/04/16 05:15:54 cgd Exp $";
#endif /* not lint */
/*
@@ -237,7 +237,7 @@ setflags(n)
if (DX)
f |= DECCTQ;
- if (MD)
+ if (MB)
f |= MDMBUF;
return (f);