From 9d55e09cfea6bd9d1be71f65554246b8263ca398 Mon Sep 17 00:00:00 2001 From: Gisle Vanem Date: Fri, 24 May 2019 09:05:28 +0200 Subject: [PATCH] Fix typo. --- lib/url.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/url.c b/lib/url.c index b5169485f..647b8a428 100644 --- a/lib/url.c +++ b/lib/url.c @@ -1902,7 +1902,7 @@ static void zonefrom_url(CURLU *uh, struct connectdata *conn) char *endp; unsigned long scope = strtoul(zoneid, &endp, 10); if(!*endp && (scope < UINT_MAX)) - /* A plain number, use it direcly as a scope id. */ + /* A plain number, use it directly as a scope id. */ conn->scope_id = (unsigned int)scope; #ifdef HAVE_IF_NAMETOINDEX else {