gnunet-svn
[Top][All Lists]
Advanced

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

[GNUnet-SVN] [gnurl] 13/73: vtls: fix warnings with --disable-crypto-aut


From: gnunet
Subject: [GNUnet-SVN] [gnurl] 13/73: vtls: fix warnings with --disable-crypto-auth
Date: Tue, 24 Oct 2017 18:53:54 +0200

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

ng0 pushed a commit to branch master
in repository gnurl.

commit 202189ff2c832bf39e7e6d9a6b8b2c980cc4201b
Author: Marcel Raad <address@hidden>
AuthorDate: Fri Oct 6 19:01:19 2017 +0200

    vtls: fix warnings with --disable-crypto-auth
    
    When CURL_DISABLE_CRYPTO_AUTH is defined, Curl_none_md5sum's parameters
    are not used.
---
 lib/vtls/vtls.c | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/lib/vtls/vtls.c b/lib/vtls/vtls.c
index f95652520..e1cae1b40 100644
--- a/lib/vtls/vtls.c
+++ b/lib/vtls/vtls.c
@@ -1080,6 +1080,10 @@ CURLcode Curl_none_md5sum(unsigned char *input 
UNUSED_PARAM,
                           unsigned char *md5sum UNUSED_PARAM,
                           size_t md5len UNUSED_PARAM)
 {
+  (void)input;
+  (void)inputlen;
+  (void)md5sum;
+  (void)md5len;
   return CURLE_NOT_BUILT_IN;
 }
 #endif

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



reply via email to

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