summaryrefslogtreecommitdiff
path: root/webfinger.c
diff options
context:
space:
mode:
authorGravatar default2022-11-09 07:34:04 +0100
committerGravatar default2022-11-09 07:34:04 +0100
commit6e0b5c9d209f31f851fee2f9cbf34dd4c1478839 (patch)
tree1409186187c12963b80b299b84d04b80587df324 /webfinger.c
parentUpdated documentation. (diff)
downloadsnac2-6e0b5c9d209f31f851fee2f9cbf34dd4c1478839.tar.gz
snac2-6e0b5c9d209f31f851fee2f9cbf34dd4c1478839.tar.xz
snac2-6e0b5c9d209f31f851fee2f9cbf34dd4c1478839.zip
Fixed typo in webfinger_request().
Diffstat (limited to '')
-rw-r--r--webfinger.c2
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)
39 39
40 if (xs_list_len(l) == 2) { 40 if (xs_list_len(l) == 2) {
41 host = xs_list_get(l, 1); 41 host = xs_list_get(l, 1);
42 resource = xs_fmt("acct:%s", qs); 42 resource = xs_fmt("acct:%s", s);
43 } 43 }
44 } 44 }
45 45