summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 {