diff options
-rw-r--r-- | usr.sbin/ppp/ppp.8 | 4 | ||||
-rw-r--r-- | usr.sbin/ppp/ppp.8.m4 | 4 | ||||
-rw-r--r-- | usr.sbin/ppp/vars.c | 6 |
3 files changed, 7 insertions, 7 deletions
diff --git a/usr.sbin/ppp/ppp.8 b/usr.sbin/ppp/ppp.8 index d4b9810..f812093 100644 --- a/usr.sbin/ppp/ppp.8 +++ b/usr.sbin/ppp/ppp.8 @@ -1,4 +1,4 @@ -.\" $Id: ppp.8,v 1.60 1997/08/31 20:07:03 brian Exp $ +.\" $Id: ppp.8,v 1.61 1997/09/04 00:38:20 brian Exp $ .Dd 20 September 1995 .Os FreeBSD .Dt PPP 8 @@ -1388,7 +1388,7 @@ Default: Enabled and Accepted. This option decides if Van Jacobson header compression will be used. .It lqr -Default: Enabled and Accepted. This option decides if Link Quality +Default: Disabled and Accepted. This option decides if Link Quality Requests will be sent. LQR is a protocol that allows .Nm to determine that the link is down without relying on the modems diff --git a/usr.sbin/ppp/ppp.8.m4 b/usr.sbin/ppp/ppp.8.m4 index d4b9810..f812093 100644 --- a/usr.sbin/ppp/ppp.8.m4 +++ b/usr.sbin/ppp/ppp.8.m4 @@ -1,4 +1,4 @@ -.\" $Id: ppp.8,v 1.60 1997/08/31 20:07:03 brian Exp $ +.\" $Id: ppp.8,v 1.61 1997/09/04 00:38:20 brian Exp $ .Dd 20 September 1995 .Os FreeBSD .Dt PPP 8 @@ -1388,7 +1388,7 @@ Default: Enabled and Accepted. This option decides if Van Jacobson header compression will be used. .It lqr -Default: Enabled and Accepted. This option decides if Link Quality +Default: Disabled and Accepted. This option decides if Link Quality Requests will be sent. LQR is a protocol that allows .Nm to determine that the link is down without relying on the modems diff --git a/usr.sbin/ppp/vars.c b/usr.sbin/ppp/vars.c index cda8fb442..60bfeeb 100644 --- a/usr.sbin/ppp/vars.c +++ b/usr.sbin/ppp/vars.c @@ -17,7 +17,7 @@ * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. * - * $Id: vars.c,v 1.25 1997/08/25 00:29:31 brian Exp $ + * $Id: vars.c,v 1.26 1997/09/04 00:38:21 brian Exp $ * */ #include "fsm.h" @@ -30,14 +30,14 @@ #include "defs.h" char VarVersion[] = "PPP Version 1.1"; -char VarLocalVersion[] = "$Date: 1997/08/25 00:29:31 $"; +char VarLocalVersion[] = "$Date: 1997/09/04 00:38:21 $"; /* * Order of conf option is important. See vars.h. */ struct confdesc pppConfs[] = { {"vjcomp", CONF_ENABLE, CONF_ACCEPT}, - {"lqr", CONF_ENABLE, CONF_ACCEPT}, + {"lqr", CONF_DISABLE, CONF_ACCEPT}, {"chap", CONF_DISABLE, CONF_ACCEPT}, {"pap", CONF_DISABLE, CONF_ACCEPT}, {"acfcomp", CONF_ENABLE, CONF_ACCEPT}, |