diff options
author | Gisle Vanem <gisle.vanem@gmail.com> | 2019-05-24 09:05:28 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-05-24 09:05:28 +0200 |
commit | 9d55e09cfea6bd9d1be71f65554246b8263ca398 (patch) | |
tree | c519a089365f7637802e4b8b2d1bb535adb84257 /lib | |
parent | 4e86f2fc4e6c504c39baf5763f34225c41c1605b (diff) | |
download | curl-9d55e09cfea6bd9d1be71f65554246b8263ca398.tar.gz |
Fix typo.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/url.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 { |