From: Andreas Schneider Date: Mon, 24 Jun 2019 11:18:32 +0000 (+0200) Subject: libcli:auth: Use gnutls_error_to_werror() in smbencrypt X-Git-Tag: ldb-2.0.5~182 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d4494648dd274328b57a99889bd23440c19f75fd;p=thirdparty%2Fsamba.git libcli:auth: Use gnutls_error_to_werror() in smbencrypt Signed-off-by: Andreas Schneider Reviewed-by: Andrew Bartlett --- diff --git a/libcli/auth/smbencrypt.c b/libcli/auth/smbencrypt.c index 65d1bdce9bf..a74ccf09b02 100644 --- a/libcli/auth/smbencrypt.c +++ b/libcli/auth/smbencrypt.c @@ -28,6 +28,7 @@ #include "../libcli/auth/libcli_auth.h" #include "../librpc/gen_ndr/ndr_ntlmssp.h" +#include "lib/crypto/gnutls_helpers.h" #include #include @@ -1028,20 +1029,20 @@ WERROR decode_wkssvc_join_password_buffer(TALLOC_CTX *mem_ctx, rc = gnutls_hash_init(&hash_hnd, GNUTLS_DIG_MD5); if (rc < 0) { - result = WERR_NOT_ENOUGH_MEMORY; + result = gnutls_error_to_werror(rc, WERR_CONTENT_BLOCKED); goto out; } rc = gnutls_hash(hash_hnd, session_key->data, session_key->length); if (rc < 0) { gnutls_hash_deinit(hash_hnd, NULL); - result = WERR_INTERNAL_ERROR; + result = gnutls_error_to_werror(rc, WERR_CONTENT_BLOCKED); goto out; } rc = gnutls_hash(hash_hnd, confounder, confounder_len); if (rc < 0) { gnutls_hash_deinit(hash_hnd, NULL); - result = WERR_INTERNAL_ERROR; + result = gnutls_error_to_werror(rc, WERR_CONTENT_BLOCKED); goto out; } gnutls_hash_deinit(hash_hnd, confounded_session_key.data);