aboutsummaryrefslogtreecommitdiff
path: root/src/testcurl/test_get.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/testcurl/test_get.c')
-rw-r--r--src/testcurl/test_get.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/testcurl/test_get.c b/src/testcurl/test_get.c
index 68ff6218..8eabdc93 100644
--- a/src/testcurl/test_get.c
+++ b/src/testcurl/test_get.c
@@ -117,7 +117,7 @@ ahc_echo (void *cls,
117 (void) upload_data; 117 (void) upload_data;
118 (void) upload_data_size; /* Unused. Silence compiler warning. */ 118 (void) upload_data_size; /* Unused. Silence compiler warning. */
119 119
120 if (0 != strcasecmp (me, method)) 120 if (0 != strcmp (me, method))
121 return MHD_NO; /* unexpected method */ 121 return MHD_NO; /* unexpected method */
122 if (&ptr != *unused) 122 if (&ptr != *unused)
123 { 123 {
@@ -756,7 +756,7 @@ ahc_empty (void *cls,
756 (void) upload_data; 756 (void) upload_data;
757 (void) upload_data_size; /* Unused. Silent compiler warning. */ 757 (void) upload_data_size; /* Unused. Silent compiler warning. */
758 758
759 if (0 != strcasecmp ("GET", method)) 759 if (0 != strcmp ("GET", method))
760 return MHD_NO; /* unexpected method */ 760 return MHD_NO; /* unexpected method */
761 if (&ptr != *unused) 761 if (&ptr != *unused)
762 { 762 {