diff options
author | default <nobody@localhost> | 2023-12-17 19:53:54 +0100 |
---|---|---|
committer | default <nobody@localhost> | 2023-12-17 19:53:54 +0100 |
commit | af912dba0b37e27bbd95e6ee6057289c6d9540bb (patch) | |
tree | 4aa013c9a267f8c691c6120f35f3082fb1c799c6 /http.c | |
parent | adf42137561ac671b1bad290c2ef5e2a492e46d4 (diff) |
actor_request() accepts again an optional snac 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(xs_dict *req, xs_str **err) xs *actor = NULL; - if (!valid_status(actor_request(keyId, &actor))) { + if (!valid_status(actor_request(NULL, keyId, &actor))) { *err = xs_fmt("unknown actor %s", keyId); return 0; } |