aboutsummaryrefslogtreecommitdiff
path: root/usr.sbin
diff options
context:
space:
mode:
authorBrian Somers <brian@FreeBSD.org>2001-08-24 14:53:41 +0000
committerBrian Somers <brian@FreeBSD.org>2001-08-24 14:53:41 +0000
commit1a939a075f4913f46b79d0ae90c3e02037877a9f (patch)
treef42d1888e7834f613f388d588f0b6e8042b89a60 /usr.sbin
parent321d268b287854f14779055b3a7ca8fc28b09de1 (diff)
Notes
Diffstat (limited to 'usr.sbin')
-rw-r--r--usr.sbin/ppp/ether.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/ppp/ether.c b/usr.sbin/ppp/ether.c
index 7052000d80f6..be261da06dba 100644
--- a/usr.sbin/ppp/ether.c
+++ b/usr.sbin/ppp/ether.c
@@ -230,7 +230,7 @@ ether_MessageIn(struct etherdevice *dev)
if (ret <= 0)
return;
- if (NgRecvMsg(dev->cs, rep, sizeof msgbuf, NULL) < 0)
+ if (NgRecvMsg(dev->cs, rep, sizeof msgbuf, NULL) <= 0)
return;
if (rep->header.version != NG_VERSION) {
@@ -511,7 +511,7 @@ ether_Create(struct physical *p)
/* Get our list back */
resp = (struct ng_mesg *)rbuf;
- if (NgRecvMsg(dev->cs, resp, sizeof rbuf, NULL) < 0) {
+ if (NgRecvMsg(dev->cs, resp, sizeof rbuf, NULL) <= 0) {
log_Printf(LogWARN, "Cannot get netgraph response: %s\n",
strerror(errno));
return ether_Abandon(dev, p);