summaryrefslogtreecommitdiff
path: root/http.c
diff options
context:
space:
mode:
authordefault <nobody@localhost>2023-12-10 17:46:54 +0100
committerdefault <nobody@localhost>2023-12-10 17:46:54 +0100
commit0e6c5f9463d7800b40b777af50c6c09ee3d97af2 (patch)
tree590a9a3a6836145e01db0d874f3d6a2967189df4 /http.c
parent8823325bd93afd05370ce175edde90beaaef027e (diff)
actor_request() does not need a user argument.
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 d7f1629..4f9b4b4 100644
--- a/http.c
+++ b/http.c
@@ -173,7 +173,7 @@ int check_signature(snac *user, xs_dict *req, xs_str **err)
xs *actor = NULL;
- if (!valid_status(actor_request(user, keyId, &actor))) {
+ if (!valid_status(actor_request(keyId, &actor))) {
*err = xs_fmt("unknown actor %s", keyId);
return 0;
}