snac2

Fork of https://codeberg.org/grunfink/snac2
git clone https://git.inz.fi/snac2
Log | Files | Refs | README | LICENSE

commit 6e0b5c9d209f31f851fee2f9cbf34dd4c1478839
parent 3beafe8845f667efe4ddd7942fc1f2c2b9aa39e0
Author: default <nobody@localhost>
Date:   Wed,  9 Nov 2022 07:34:04 +0100

Fixed typo in webfinger_request().

Diffstat:
Mwebfinger.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 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); } }