diff options
author | Paul Moore <paul.moore@hp.com> | 2006-11-17 17:38:45 -0500 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2006-12-03 00:24:06 -0500 |
commit | c6fa82a9dd6160e0bc980cb0401c16bf62f2fe66 (patch) | |
tree | 3055b0e8fd0372da0c26726b9762d01078ad593a /include/net/netlabel.h | |
parent | cd28786d6d4209ec32a375d92188ec7b4d98779f (diff) |
NetLabel: change netlbl_secattr_init() to return void
The netlbl_secattr_init() function would always return 0 making it pointless
to have a return value. This patch changes the function to return void.
Signed-off-by: Paul Moore <paul.moore@hp.com>
Signed-off-by: James Morris <jmorris@namei.org>
Diffstat (limited to 'include/net/netlabel.h')
-rw-r--r-- | include/net/netlabel.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/include/net/netlabel.h b/include/net/netlabel.h index ba2f6823805c..4e223aa25e5b 100644 --- a/include/net/netlabel.h +++ b/include/net/netlabel.h | |||
@@ -169,14 +169,12 @@ static inline void netlbl_secattr_cache_free(struct netlbl_lsm_cache *cache) | |||
169 | * @secattr: the struct to initialize | 169 | * @secattr: the struct to initialize |
170 | * | 170 | * |
171 | * Description: | 171 | * Description: |
172 | * Initialize an already allocated netlbl_lsm_secattr struct. Returns zero on | 172 | * Initialize an already allocated netlbl_lsm_secattr struct. |
173 | * success, negative values on error. | ||
174 | * | 173 | * |
175 | */ | 174 | */ |
176 | static inline int netlbl_secattr_init(struct netlbl_lsm_secattr *secattr) | 175 | static inline void netlbl_secattr_init(struct netlbl_lsm_secattr *secattr) |
177 | { | 176 | { |
178 | memset(secattr, 0, sizeof(*secattr)); | 177 | memset(secattr, 0, sizeof(*secattr)); |
179 | return 0; | ||
180 | } | 178 | } |
181 | 179 | ||
182 | /** | 180 | /** |