diff options
author | Wilmer van der Gaast <wilmer@gaast.net> | 2005-12-17 20:13:32 +0100 |
---|---|---|
committer | Wilmer van der Gaast <wilmer@gaast.net> | 2005-12-17 20:13:32 +0100 |
commit | f3e1e9257bacc129b5ce9d18001f7ee99593d74d (patch) | |
tree | 4b40fe22866a1e4d1d45c85b8f97582502c40e90 /protocols/http_client.h | |
parent | 2db811a764d70734cfe2d9e0992430e2f7fc53e9 (diff) |
Fixed parameter ordering.
Diffstat (limited to 'protocols/http_client.h')
-rw-r--r-- | protocols/http_client.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/http_client.h b/protocols/http_client.h index 440fdc9d..26ef1a00 100644 --- a/protocols/http_client.h +++ b/protocols/http_client.h @@ -51,4 +51,4 @@ struct http_request gpointer data; }; -void *http_dorequest( char *host, int port, http_input_function func, int ssl, char *request, gpointer data ); +void *http_dorequest( char *host, int port, int ssl, char *request, http_input_function func, gpointer data ); |