aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Somers <brian@FreeBSD.org>1999-04-11 08:53:39 +0000
committerBrian Somers <brian@FreeBSD.org>1999-04-11 08:53:39 +0000
commitcfbfc4af57d6265870dbc2a4a160a919010e8e8e (patch)
tree62bc591abd8fd36d243c7e4d92f3977700cb85ee
parentd939db6771f828f8b11e7c181ef09645a6ae5504 (diff)
Notes
-rw-r--r--usr.sbin/ppp/async.c4
-rw-r--r--usr.sbin/ppp/lcp.c4
2 files changed, 3 insertions, 5 deletions
diff --git a/usr.sbin/ppp/async.c b/usr.sbin/ppp/async.c
index ef59427cb156..ff241531f19e 100644
--- a/usr.sbin/ppp/async.c
+++ b/usr.sbin/ppp/async.c
@@ -17,7 +17,7 @@
* IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
* WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
*
- * $Id: async.c,v 1.16 1998/05/21 21:43:55 brian Exp $
+ * $Id: async.c,v 1.17 1998/06/16 19:40:34 brian Exp $
*
*/
#include <sys/types.h>
@@ -57,7 +57,7 @@ void
async_SetLinkParams(struct async *async, struct lcp *lcp)
{
async->my_accmap = lcp->want_accmap;
- async->his_accmap = lcp->his_accmap;
+ async->his_accmap = lcp->his_accmap | lcp->want_accmap;
}
/*
diff --git a/usr.sbin/ppp/lcp.c b/usr.sbin/ppp/lcp.c
index bcc67adf313f..76ed0d67b1c9 100644
--- a/usr.sbin/ppp/lcp.c
+++ b/usr.sbin/ppp/lcp.c
@@ -17,10 +17,8 @@
* IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
* WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
*
- * $Id: lcp.c,v 1.70 1999/03/01 13:46:45 brian Exp $
+ * $Id: lcp.c,v 1.66.2.1 1999/03/24 18:03:11 brian Exp $
*
- * TODO:
- * o Limit data field length by MRU
*/
#include <sys/param.h>