diff options
author | default <nobody@localhost> | 2023-12-10 17:46:54 +0100 |
---|---|---|
committer | default <nobody@localhost> | 2023-12-10 17:46:54 +0100 |
commit | 0e6c5f9463d7800b40b777af50c6c09ee3d97af2 (patch) | |
tree | 590a9a3a6836145e01db0d874f3d6a2967189df4 /http.c | |
parent | 8823325bd93afd05370ce175edde90beaaef027e (diff) |
actor_request() does not need a user argument.
Diffstat (limited to 'http.c')
-rw-r--r-- | http.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; } |