diff options
Diffstat (limited to 'src/testcurl/test_post.c')
-rw-r--r-- | src/testcurl/test_post.c | 4 |
1 files 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, | |||
112 | (void) kind; (void) filename; (void) content_type; /* Unused. Silent compiler warning. */ | 112 | (void) kind; (void) filename; (void) content_type; /* Unused. Silent compiler warning. */ |
113 | (void) transfer_encoding; (void) off; /* Unused. Silent compiler warning. */ | 113 | (void) transfer_encoding; (void) off; /* Unused. Silent compiler warning. */ |
114 | 114 | ||
115 | if ((0 == strcasecmp (key, "name")) && | 115 | if ((0 == strcmp (key, "name")) && |
116 | (size == strlen ("daniel")) && (0 == strncmp (value, "daniel", size))) | 116 | (size == strlen ("daniel")) && (0 == strncmp (value, "daniel", size))) |
117 | (*eok) |= 1; | 117 | (*eok) |= 1; |
118 | if ((0 == strcasecmp (key, "project")) && | 118 | if ((0 == strcmp (key, "project")) && |
119 | (size == strlen ("curl")) && (0 == strncmp (value, "curl", size))) | 119 | (size == strlen ("curl")) && (0 == strncmp (value, "curl", size))) |
120 | (*eok) |= 2; | 120 | (*eok) |= 2; |
121 | return MHD_YES; | 121 | return MHD_YES; |