Unverified Commit 9d55e09c authored by Gisle Vanem's avatar Gisle Vanem Committed by GitHub
Browse files

Fix typo.

parent 4e86f2fc
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -1902,7 +1902,7 @@ static void zonefrom_url(CURLU *uh, struct connectdata *conn)
    char *endp;
    char *endp;
    unsigned long scope = strtoul(zoneid, &endp, 10);
    unsigned long scope = strtoul(zoneid, &endp, 10);
    if(!*endp && (scope < UINT_MAX))
    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;
      conn->scope_id = (unsigned int)scope;
#ifdef HAVE_IF_NAMETOINDEX
#ifdef HAVE_IF_NAMETOINDEX
    else {
    else {