summaryrefslogtreecommitdiffstats
path: root/sys/net/if_spppsubr.c
diff options
context:
space:
mode:
authorbde <bde@FreeBSD.org>1998-03-01 06:01:33 +0000
committerbde <bde@FreeBSD.org>1998-03-01 06:01:33 +0000
commitb39d5dada4196b2a8d66f2b2725ec3e047fa0f0c (patch)
treec7df449d50fd0bb5ed8765807ac5ac732c20b88a /sys/net/if_spppsubr.c
parent242acb1b42a283b376f8bf289027c6eb5923d12f (diff)
downloadFreeBSD-src-b39d5dada4196b2a8d66f2b2725ec3e047fa0f0c.zip
FreeBSD-src-b39d5dada4196b2a8d66f2b2725ec3e047fa0f0c.tar.gz
Fixed syntax error in previous commit.
Diffstat (limited to 'sys/net/if_spppsubr.c')
-rw-r--r--sys/net/if_spppsubr.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/net/if_spppsubr.c b/sys/net/if_spppsubr.c
index 87d3eb8..441eb7c 100644
--- a/sys/net/if_spppsubr.c
+++ b/sys/net/if_spppsubr.c
@@ -17,7 +17,7 @@
*
* From: Version 2.4, Thu Apr 30 17:17:21 MSD 1997
*
- * $Id: if_spppsubr.c,v 1.32 1998/02/09 06:09:57 eivind Exp $
+ * $Id: if_spppsubr.c,v 1.33 1998/02/28 21:01:09 phk Exp $
*/
#include "opt_inet.h"
@@ -2503,7 +2503,7 @@ sppp_ipcp_RCR(struct sppp *sp, struct lcp_header *h, int len)
desiredaddr = p[2] << 24 | p[3] << 16 |
p[4] << 8 | p[5];
if (desiredaddr == hisaddr ||
- (hisaddr == 1 && desiredaddr != 0) {
+ hisaddr == 1 && desiredaddr != 0) {
/*
* Peer's address is same as our value,
* or we have set it to 0.0.0.1 to
OpenPOWER on IntegriCloud