]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
Fix typo.
authorGisle Vanem <gisle.vanem@gmail.com>
Fri, 24 May 2019 07:05:28 +0000 (09:05 +0200)
committerGitHub <noreply@github.com>
Fri, 24 May 2019 07:05:28 +0000 (09:05 +0200)
lib/url.c

index b5169485f9ad307ba4956c52ac14601905ccba43..647b8a42834fb82c5cb80e100ab3c635e262f975 100644 (file)
--- 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 {