gnunet-svn
[Top][All Lists]
Advanced

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

[GNUnet-SVN] [gnurl] 155/220: spnego_sspi: add typecast to fix build war


From: gnunet
Subject: [GNUnet-SVN] [gnurl] 155/220: spnego_sspi: add typecast to fix build warning
Date: Thu, 12 Sep 2019 17:28:35 +0200

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

ng0 pushed a commit to branch master
in repository gnurl.

commit 23803aae7b9e3ef15a0339a2afa9da7c5c2bfac1
Author: Daniel Stenberg <address@hidden>
AuthorDate: Tue Aug 20 11:44:18 2019 +0200

    spnego_sspi: add typecast to fix build warning
    
    Reported in build "Win32 target on Debian Stretch (64-bit) -
    i686-w64-mingw32 - gcc-20170516"
    
    Closes #4245
---
 lib/vauth/spnego_sspi.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lib/vauth/spnego_sspi.c b/lib/vauth/spnego_sspi.c
index a4935276b..13d7a4cfe 100644
--- a/lib/vauth/spnego_sspi.c
+++ b/lib/vauth/spnego_sspi.c
@@ -252,7 +252,7 @@ CURLcode Curl_auth_decode_spnego_message(struct Curl_easy 
*data,
     failf(data, "InitializeSecurityContext failed: %s",
           Curl_sspi_strerror(nego->status, buffer, sizeof(buffer)));
 
-    if(nego->status == SEC_E_INSUFFICIENT_MEMORY)
+    if(nego->status == (DWORD)SEC_E_INSUFFICIENT_MEMORY)
       return CURLE_OUT_OF_MEMORY;
 
     return CURLE_AUTH_ERROR;
@@ -266,7 +266,7 @@ CURLcode Curl_auth_decode_spnego_message(struct Curl_easy 
*data,
       failf(data, "CompleteAuthToken failed: %s",
             Curl_sspi_strerror(nego->status, buffer, sizeof(buffer)));
 
-      if(nego->status == SEC_E_INSUFFICIENT_MEMORY)
+      if(nego->status == (DWORD)SEC_E_INSUFFICIENT_MEMORY)
         return CURLE_OUT_OF_MEMORY;
 
       return CURLE_AUTH_ERROR;

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



reply via email to

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