gnunet-svn
[Top][All Lists]
Advanced

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

[GNUnet-SVN] r37011 - libmicrohttpd/src/microhttpd


From: gnunet
Subject: [GNUnet-SVN] r37011 - libmicrohttpd/src/microhttpd
Date: Sun, 10 Apr 2016 11:42:35 +0200

Author: Karlson2k
Date: 2016-04-10 11:42:35 +0200 (Sun, 10 Apr 2016)
New Revision: 37011

Modified:
   libmicrohttpd/src/microhttpd/basicauth.c
Log:
Silent compiler warning

Modified: libmicrohttpd/src/microhttpd/basicauth.c
===================================================================
--- libmicrohttpd/src/microhttpd/basicauth.c    2016-04-10 09:35:08 UTC (rev 
37010)
+++ libmicrohttpd/src/microhttpd/basicauth.c    2016-04-10 09:42:35 UTC (rev 
37011)
@@ -135,7 +135,7 @@
                        hlen, 
                        "Basic realm=\"%s\"", 
                        realm);
-  if (res > 0 && res < hlen)
+  if (res > 0 && (size_t)res < hlen)
     ret = MHD_add_response_header (response,
                                    MHD_HTTP_HEADER_WWW_AUTHENTICATE,
                                    header);




reply via email to

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