diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2014-08-10 00:09:52 +0200 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2014-08-10 00:09:52 +0200 |
commit | 96784de59fb35077c2bb33c39328992b836d87d3 (patch) | |
tree | eba46707fce39a89130872c58781630d745e356a /security/selinux/netport.c | |
parent | Merge branch 'for-3.17' of git://linux-nfs.org/~bfields/linux (diff) | |
parent | selinux: remove unused variabled in the netport, netnode, and netif caches (diff) | |
download | linux-96784de59fb35077c2bb33c39328992b836d87d3.tar.xz linux-96784de59fb35077c2bb33c39328992b836d87d3.zip |
Merge branch 'stable-3.17' of git://git.infradead.org/users/pcmoore/selinux
Pull SElinux fixes from Paul Moore:
"Two small patches to fix a couple of build warnings in SELinux and
NetLabel. The patches are obvious enough that I don't think any
additional explanation is necessary, but it basically boils down to
the usual: I was stupid, and these patches fix some of the stupid.
Both patches were posted earlier this week to the SELinux list, and
that is where they sat as I didn't think there were noteworthy enough
to go upstream at this point in time, but DaveM would rather see them
upstream now so who am I to argue. As the patches are both very
small"
* 'stable-3.17' of git://git.infradead.org/users/pcmoore/selinux:
selinux: remove unused variabled in the netport, netnode, and netif caches
netlabel: fix the netlbl_catmap_setlong() dummy function
Diffstat (limited to 'security/selinux/netport.c')
-rw-r--r-- | security/selinux/netport.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/security/selinux/netport.c b/security/selinux/netport.c index 73ac6784d091..3311cc393cb4 100644 --- a/security/selinux/netport.c +++ b/security/selinux/netport.c @@ -237,7 +237,6 @@ void sel_netport_flush(void) static __init int sel_netport_init(void) { int iter; - int ret; if (!selinux_enabled) return 0; @@ -247,7 +246,7 @@ static __init int sel_netport_init(void) sel_netport_hash[iter].size = 0; } - return ret; + return 0; } __initcall(sel_netport_init); |