summaryrefslogtreecommitdiff
path: root/http.c
diff options
context:
space:
mode:
authordefault <nobody@localhost>2023-03-02 17:13:17 +0100
committerdefault <nobody@localhost>2023-03-02 17:13:17 +0100
commitb2ce9323db88539860e0e71960ffdf22f33005e4 (patch)
tree07bc53406d00f0a00fcc5f861b970db444ad08b0 /http.c
parent8451d66601f2cf46630d9258c572245818d9a055 (diff)
Added the url to srv_archive().
Diffstat (limited to 'http.c')
-rw-r--r--http.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/http.c b/http.c
index a8b38ad..dba47a4 100644
--- a/http.c
+++ b/http.c
@@ -96,7 +96,7 @@ xs_dict *http_signed_request_raw(const char *keyid, const char *seckey,
response = xs_http_request(method, url, hdrs,
body, b_size, status, payload, p_size, timeout);
- srv_archive("SEND", hdrs, body, b_size, *status, response, *payload, *p_size);
+ srv_archive("SEND", url, hdrs, body, b_size, *status, response, *payload, *p_size);
return response;
}