summaryrefslogtreecommitdiff
path: root/client.c
diff options
context:
space:
mode:
authorꦌ ꦫꦶ ꦏ꧀ꦦꦿ ꦧ ꦮ ꦑ ꦩ ꦭ꧀ <erik@darapsa.co.id>2019-09-20 08:17:57 +0800
committerꦌ ꦫꦶ ꦏ꧀ꦦꦿ ꦧ ꦮ ꦑ ꦩ ꦭ꧀ <erik@darapsa.co.id>2019-09-20 08:17:57 +0800
commit58bbe66096bc40cede5ea78442f9f0702c73c6ed (patch)
tree6be77be7957de2ec7d965362e5d9aab1328155f0 /client.c
parent2ecd7fbbc8456bd5a3d4f6b188c626bc44c60eb2 (diff)
Make the request function a variadic one
Diffstat (limited to 'client.c')
-rw-r--r--client.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/client.c b/client.c
index ebcc188..2972167 100644
--- a/client.c
+++ b/client.c
@@ -35,7 +35,7 @@ void rtclient_login(const char *name, const char *password)
, CURLFORM_PTRCONTENTS, password
, CURLFORM_END);
last = NULL;
- request("", "", NULL, NULL, post);
+ request(NULL, NULL, post, "");
curl_formfree(post);
post = NULL;
}