summaryrefslogtreecommitdiff
path: root/http.c
diff options
context:
space:
mode:
authorGravatar default2023-12-10 17:50:03 +0100
committerGravatar default2023-12-10 17:50:03 +0100
commit09b926c16847d88e97bfba1ce239206a7bfd19bb (patch)
tree75f8853aacbefeef76b0cd96475fc41fbd971c81 /http.c
parentactor_request() does not need a user argument. (diff)
downloadpenes-snac2-09b926c16847d88e97bfba1ce239206a7bfd19bb.tar.gz
penes-snac2-09b926c16847d88e97bfba1ce239206a7bfd19bb.tar.xz
penes-snac2-09b926c16847d88e97bfba1ce239206a7bfd19bb.zip
More functions do not require the user argument.
Diffstat (limited to '')
-rw-r--r--http.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/http.c b/http.c
index 4f9b4b4..33ed53d 100644
--- a/http.c
+++ b/http.c
@@ -120,7 +120,7 @@ xs_dict *http_signed_request(snac *snac, const char *method, const char *url,
120} 120}
121 121
122 122
123int check_signature(snac *user, xs_dict *req, xs_str **err) 123int check_signature(xs_dict *req, xs_str **err)
124/* check the signature */ 124/* check the signature */
125{ 125{
126 char *sig_hdr = xs_dict_get(req, "signature"); 126 char *sig_hdr = xs_dict_get(req, "signature");