From: Gisle Vanem Date: Fri, 24 May 2019 07:05:28 +0000 (+0200) Subject: Fix typo. X-Git-Tag: curl-7_65_1~36 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=9d55e09cfea6bd9d1be71f65554246b8263ca398;p=thirdparty%2Fcurl.git Fix typo. --- diff --git a/lib/url.c b/lib/url.c index b5169485f9..647b8a4283 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 {