From: Paul Moore <[EMAIL PROTECTED]> 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 <[EMAIL PROTECTED]> --- include/net/netlabel.h | 6 ++---- 1 files changed, 2 insertions(+), 4 deletions(-) Index: net-2.6.20_netlabel-base-work/include/net/netlabel.h =================================================================== --- net-2.6.20_netlabel-base-work.orig/include/net/netlabel.h +++ net-2.6.20_netlabel-base-work/include/net/netlabel.h @@ -169,14 +169,12 @@ static inline void netlbl_secattr_cache_ * @secattr: the struct to initialize * * Description: - * Initialize an already allocated netlbl_lsm_secattr struct. Returns zero on - * success, negative values on error. + * Initialize an already allocated netlbl_lsm_secattr struct. * */ -static inline int netlbl_secattr_init(struct netlbl_lsm_secattr *secattr) +static inline void netlbl_secattr_init(struct netlbl_lsm_secattr *secattr) { memset(secattr, 0, sizeof(*secattr)); - return 0; } /** -- paul moore linux security @ hp - To unsubscribe from this list: send the line "unsubscribe netdev" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html