fix arguments to uclient_http_reset_headers
authorFelix Fietkau <nbd@openwrt.org>
Sat, 29 Mar 2014 22:29:38 +0000 (23:29 +0100)
committerFelix Fietkau <nbd@openwrt.org>
Sat, 29 Mar 2014 22:29:38 +0000 (23:29 +0100)
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
uclient-http.c
uclient.h

index 44199449d98e69cc7f0f9038b4abd4cd50063c81..f16d29d399c2a2936b8c62649fd8f726b74b3a78 100644 (file)
@@ -801,7 +801,7 @@ uclient_http_set_request_type(struct uclient *cl, const char *type)
 }
 
 int
-uclient_http_reset_headers(struct uclient *cl, const char *name, const char *value)
+uclient_http_reset_headers(struct uclient *cl)
 {
        struct uclient_http *uh = container_of(cl, struct uclient_http, uc);
 
index e8214c28008ef7ee3258073dfd94ccfe662baea5..65e48b2f35b68058f3fb2f7ec4ff009ded60a9d5 100644 (file)
--- a/uclient.h
+++ b/uclient.h
@@ -68,8 +68,8 @@ int uclient_request(struct uclient *cl);
 /* HTTP */
 extern const struct uclient_backend uclient_backend_http;
 
+int uclient_http_reset_headers(struct uclient *cl);
 int uclient_http_set_header(struct uclient *cl, const char *name, const char *value);
-int uclient_http_reset_headers(struct uclient *cl, const char *name, const char *value);
 int uclient_http_set_request_type(struct uclient *cl, const char *type);
 bool uclient_http_redirect(struct uclient *cl);