diff options
author | eivind <eivind@FreeBSD.org> | 1998-12-09 13:48:08 +0000 |
---|---|---|
committer | eivind <eivind@FreeBSD.org> | 1998-12-09 13:48:08 +0000 |
commit | 81c413b6ef2412b27e9b734c605e1fcbfd89e994 (patch) | |
tree | 6b2d26ff9aa9e1b2bebd0efefc56a9dae661a06f /sys/netipx | |
parent | 6fc4a3adfcfa6eca85446d06216060dfcf37f94b (diff) | |
download | FreeBSD-src-81c413b6ef2412b27e9b734c605e1fcbfd89e994.zip FreeBSD-src-81c413b6ef2412b27e9b734c605e1fcbfd89e994.tar.gz |
Back out last change; there was 'fixup' code for the case later.
Noticed by: bde
Diffstat (limited to 'sys/netipx')
-rw-r--r-- | sys/netipx/ipx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/netipx/ipx.c b/sys/netipx/ipx.c index 11bfd90..59ccffe 100644 --- a/sys/netipx/ipx.c +++ b/sys/netipx/ipx.c @@ -122,7 +122,7 @@ ipx_control(so, cmd, data, ifp, p) ifra->ifra_addr.sipx_addr)) break; } - if (ia == NULL) + if (cmd == SIOCDIFADDR && ia == NULL) return (EADDRNOTAVAIL); /* FALLTHROUGH */ |