diff options
author | Günther Deschner <gd@samba.org> | 2008-01-11 14:43:56 +0100 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2008-01-11 15:09:20 +0100 |
commit | 2bcba87572a290d8d0281604b80355af9abf66e8 (patch) | |
tree | a0f0769358235777671b1430ffca01b4b11f2738 /source3 | |
parent | 2c591e05c983bc30ebfb729226454c4c380eaf70 (diff) | |
download | samba-2bcba87572a290d8d0281604b80355af9abf66e8.tar.gz samba-2bcba87572a290d8d0281604b80355af9abf66e8.tar.bz2 samba-2bcba87572a290d8d0281604b80355af9abf66e8.zip |
Ignore result of libnet_conf_delete_parameter here, as realm may be not there.
Guenther
(This used to be commit 2e2d058b7e90a158612af4b0a489578431f748e5)
Diffstat (limited to 'source3')
-rw-r--r-- | source3/libnet/libnet_join.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/libnet/libnet_join.c b/source3/libnet/libnet_join.c index 4fec5ac294..2c60f99d79 100644 --- a/source3/libnet/libnet_join.c +++ b/source3/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; } |