summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Adam <obnox@samba.org>2009-08-07 09:24:32 +0200
committerMichael Adam <obnox@samba.org>2009-08-07 09:24:32 +0200
commit1052502b63841dc366591ba2acb845ab85ce7304 (patch)
tree70767b531218a00cee175f1b691087a12e095682
parentf99edadc92900ef2262e38820e66a2061331a3aa (diff)
downloadtinyproxy-1052502b63841dc366591ba2acb845ab85ce7304.tar.gz
tinyproxy-1052502b63841dc366591ba2acb845ab85ce7304.zip
http_message_add_headers: make argument num_headers unsigned
and remove signed vs. unsigned comparison warnings. Michael
Diffstat (limited to '')
-rw-r--r--src/http-message.c6
-rw-r--r--src/http-message.h3
2 files changed, 4 insertions, 5 deletions
diff --git a/src/http-message.c b/src/http-message.c
index a184fa1..ad14ce7 100644
--- a/src/http-message.c
+++ b/src/http-message.c
@@ -188,18 +188,16 @@ http_message_set_body (http_message_t msg, const char *body, size_t len)
*/
int
http_message_add_headers (http_message_t msg, const char **headers,
- int num_headers)
+ unsigned int num_headers)
{
const char **new_headers;
- int i;
+ unsigned int i;
/* Check for valid arguments */
if (msg == NULL)
return -EFAULT;
if (headers == NULL)
return -EINVAL;
- if (num_headers < 1)
- return -EINVAL;
/*
* If the number of headers to add is greater than the space
diff --git a/src/http-message.h b/src/http-message.h
index 094945b..fdf2982 100644
--- a/src/http-message.h
+++ b/src/http-message.h
@@ -88,6 +88,7 @@ extern int http_message_set_response (http_message_t msg,
* sent.
*/
extern int http_message_add_headers (http_message_t msg,
- const char **headers, int num_headers);
+ const char **headers,
+ unsigned int num_headers);
#endif /* _TINYPROXY_HTTP_MESSAGE_H_ */