diff options
author | jojemann <none@none> | 2008-04-10 07:15:33 -0700 |
---|---|---|
committer | jojemann <none@none> | 2008-04-10 07:15:33 -0700 |
commit | 95c191c028009254a621522ba1ba3a0557fdbd4b (patch) | |
tree | ed68e2d75807a92a9e0288d147fd0f89356724ad | |
parent | 24ed9a9feb286185e97690c8f15a29eff678387f (diff) | |
download | illumos-gate-95c191c028009254a621522ba1ba3a0557fdbd4b.tar.gz |
6685044 enabling ipf more than once could cause iplattach() to be called multiple times
-rw-r--r-- | usr/src/uts/common/inet/ipf/ip_fil_solaris.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr/src/uts/common/inet/ipf/ip_fil_solaris.c b/usr/src/uts/common/inet/ipf/ip_fil_solaris.c index 2f02a3a175..e44f0c6967 100644 --- a/usr/src/uts/common/inet/ipf/ip_fil_solaris.c +++ b/usr/src/uts/common/inet/ipf/ip_fil_solaris.c @@ -779,7 +779,7 @@ int enable; } if (ifs->ifs_fr_running > 0) - error = 0; + return (0); error = iplattach(ifs, ns); if (error == 0) { |