diff options
author | Günther Deschner <gd@samba.org> | 2015-12-03 15:24:20 +0100 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2016-09-28 00:04:20 +0200 |
commit | 7cd429d1cdecfd58f1d5c8bc91e9840a95078610 (patch) | |
tree | 488cf8ded2e639be856c80a264c27c216d4d1d65 | |
parent | ef4f4d8be77fc8751b5fd5774e2f6a11b226da31 (diff) | |
download | samba-7cd429d1cdecfd58f1d5c8bc91e9840a95078610.tar.gz |
werror: replace WERR_GENERAL_FAILURE with WERR_GEN_FAILURE in source3/libnet/libnet_join.c
Guenther
Signed-off-by: Guenther Deschner <gd@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
-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 a95dc3dea71..7c609fb686f 100644 --- a/source3/libnet/libnet_join.c +++ b/source3/libnet/libnet_join.c @@ -2222,7 +2222,7 @@ static WERROR libnet_join_post_processing(TALLOC_CTX *mem_ctx, ads_status = libnet_join_post_processing_ads(mem_ctx, r); if (!ADS_ERR_OK(ads_status)) { - return WERR_GENERAL_FAILURE; + return WERR_GEN_FAILURE; } } #endif /* HAVE_ADS */ |