diff options
author | 2001-04-12 19:21:43 +0000 | |
---|---|---|
committer | 2001-04-12 19:21:43 +0000 | |
commit | 99b7998d53e59804e8b3b97ae123edd864da05f6 (patch) | |
tree | 48847274a85cfeb83450c4d235d05e6cffa8361a | |
parent | implement HostbasedAuthentication (= RhostRSAAuthentication for ssh v2) (diff) | |
download | wireguard-openbsd-99b7998d53e59804e8b3b97ae123edd864da05f6.tar.xz wireguard-openbsd-99b7998d53e59804e8b3b97ae123edd864da05f6.zip |
Change tip default from even parity to no parity which is more in line
with user expectations.
-rw-r--r-- | usr.bin/tip/tip.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/tip/tip.c b/usr.bin/tip/tip.c index 53afe0d08a8..91505e0f1d7 100644 --- a/usr.bin/tip/tip.c +++ b/usr.bin/tip/tip.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tip.c,v 1.11 2000/04/20 06:19:33 deraadt Exp $ */ +/* $OpenBSD: tip.c,v 1.12 2001/04/12 19:21:43 millert Exp $ */ /* $NetBSD: tip.c,v 1.13 1997/04/20 00:03:05 mellon Exp $ */ /* @@ -44,7 +44,7 @@ static char copyright[] = #if 0 static char sccsid[] = "@(#)tip.c 8.1 (Berkeley) 6/6/93"; #endif -static char rcsid[] = "$OpenBSD: tip.c,v 1.11 2000/04/20 06:19:33 deraadt Exp $"; +static char rcsid[] = "$OpenBSD: tip.c,v 1.12 2001/04/12 19:21:43 millert Exp $"; #endif /* not lint */ /* @@ -179,7 +179,7 @@ notnumber: if ((PH = getenv("PHONES")) == NOSTR) PH = _PATH_PHONES; vinit(); /* init variables */ - setparity("even"); /* set the parity table */ + setparity("none"); /* set the parity table */ if ((i = speed(number(value(BAUDRATE)))) == 0) { printf("tip: bad baud rate %ld\n", number(value(BAUDRATE))); daemon_uid(); |