diff options
author | default <nobody@localhost> | 2022-11-09 07:34:04 +0100 |
---|---|---|
committer | default <nobody@localhost> | 2022-11-09 07:34:04 +0100 |
commit | 6e0b5c9d209f31f851fee2f9cbf34dd4c1478839 (patch) | |
tree | 1409186187c12963b80b299b84d04b80587df324 | |
parent | 3beafe8845f667efe4ddd7942fc1f2c2b9aa39e0 (diff) |
Fixed typo in webfinger_request().
-rw-r--r-- | webfinger.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/webfinger.c b/webfinger.c index 6476bba..928af22 100644 --- a/webfinger.c +++ b/webfinger.c @@ -39,7 +39,7 @@ int webfinger_request(char *qs, char **actor, char **user) if (xs_list_len(l) == 2) { host = xs_list_get(l, 1); - resource = xs_fmt("acct:%s", qs); + resource = xs_fmt("acct:%s", s); } } |