gnunet-svn
[Top][All Lists]
Advanced

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

[libmicrohttpd] 16/36: test_post: fixed caseless key name match


From: gnunet
Subject: [libmicrohttpd] 16/36: test_post: fixed caseless key name match
Date: Thu, 01 Jun 2023 12:30:21 +0200

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

karlson2k pushed a commit to branch master
in repository libmicrohttpd.

commit 3002ca583e2770146bdd5d75602b6a36c8b2a777
Author: Evgeny Grin (Karlson2k) <k2k@narod.ru>
AuthorDate: Thu May 18 20:44:27 2023 +0300

    test_post: fixed caseless key name match
---
 src/testcurl/test_post.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/testcurl/test_post.c b/src/testcurl/test_post.c
index 830663b5..658b7dd2 100644
--- a/src/testcurl/test_post.c
+++ b/src/testcurl/test_post.c
@@ -112,10 +112,10 @@ post_iterator (void *cls,
   (void) kind; (void) filename; (void) content_type; /* Unused. Silent 
compiler warning. */
   (void) transfer_encoding; (void) off;            /* Unused. Silent compiler 
warning. */
 
-  if ((0 == strcasecmp (key, "name")) &&
+  if ((0 == strcmp (key, "name")) &&
       (size == strlen ("daniel")) && (0 == strncmp (value, "daniel", size)))
     (*eok) |= 1;
-  if ((0 == strcasecmp (key, "project")) &&
+  if ((0 == strcmp (key, "project")) &&
       (size == strlen ("curl")) && (0 == strncmp (value, "curl", size)))
     (*eok) |= 2;
   return MHD_YES;

-- 
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.



reply via email to

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