summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGisle Vanem <gisle.vanem@gmail.com>2019-05-24 09:05:28 +0200
committerGitHub <noreply@github.com>2019-05-24 09:05:28 +0200
commit9d55e09cfea6bd9d1be71f65554246b8263ca398 (patch)
treec519a089365f7637802e4b8b2d1bb535adb84257
parent4e86f2fc4e6c504c39baf5763f34225c41c1605b (diff)
downloadcurl-9d55e09cfea6bd9d1be71f65554246b8263ca398.tar.gz
Fix typo.
-rw-r--r--lib/url.c2
1 files changed, 1 insertions, 1 deletions
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 {