From: Günther Deschner Date: Fri, 11 Jan 2008 13:43:56 +0000 (+0100) Subject: Ignore result of libnet_conf_delete_parameter here, as realm may be not there. X-Git-Tag: samba-3.2.0pre2~38^2~10 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2e2d058b7e90a158612af4b0a489578431f748e5;p=thirdparty%2Fsamba.git Ignore result of libnet_conf_delete_parameter here, as realm may be not there. Guenther --- diff --git a/source/libnet/libnet_join.c b/source/libnet/libnet_join.c index 4fec5ac294a..2c60f99d79b 100644 --- a/source/libnet/libnet_join.c +++ b/source/libnet/libnet_join.c @@ -880,7 +880,7 @@ static WERROR do_unjoin_modify_vals_config(struct libnet_UnjoinCtx *r) W_ERROR_NOT_OK_RETURN(werr); } - werr = libnet_conf_delete_parameter(GLOBAL_NAME, "realm"); + libnet_conf_delete_parameter(GLOBAL_NAME, "realm"); return werr; }