gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] [gnurl] 139/219: spnego_gssapi: fix return code on gss_init


From: gnunet
Subject: [GNUnet-SVN] [gnurl] 139/219: spnego_gssapi: fix return code on gss_init_sec_context() failure
Date: Wed, 22 May 2019 19:17:58 +0200

This is an automated email from the git hooks/post-receive script.

ng0 pushed a commit to branch master
in repository gnurl.

commit f65845c1eccc02385cdfb22bf2e521e670f7b295
Author: Kamil Dudka <address@hidden>
AuthorDate: Mon May 6 14:16:35 2019 +0200

    spnego_gssapi: fix return code on gss_init_sec_context() failure
    
    Fixes #3726
    Closes #3849
---
 lib/vauth/spnego_gssapi.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/vauth/spnego_gssapi.c b/lib/vauth/spnego_gssapi.c
index 7c4bd4b59..de8bde2ba 100644
--- a/lib/vauth/spnego_gssapi.c
+++ b/lib/vauth/spnego_gssapi.c
@@ -170,7 +170,7 @@ CURLcode Curl_auth_decode_spnego_message(struct Curl_easy 
*data,
     Curl_gss_log_error(data, "gss_init_sec_context() failed: ",
                        major_status, minor_status);
 
-    return CURLE_OUT_OF_MEMORY;
+    return CURLE_LOGIN_DENIED;
   }
 
   if(!output_token.value || !output_token.length) {

-- 
To stop receiving notification emails like this one, please contact
address@hidden



reply via email to

[Prev in Thread] Current Thread [Next in Thread]