Commit 6264aad1 authored by Pavel Tvrdík's avatar Pavel Tvrdík Committed by Ondrej Zajicek
Browse files

Minor fixes

parent 85a3639d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -246,7 +246,7 @@ ip4_pton(char *a, ip4_addr *o)
    if (!c != !i)
      return 0;
    l = strtoul(a, &d, 10);
    if (d != c && *d || l > 255)
    if (((d != c) && *d) || (l > 255))
      return 0;
    ia = (ia << 8) | l;
    if (c)
+1 −1
Original line number Diff line number Diff line
@@ -554,7 +554,7 @@ next:
      c = 1;
      debug("got %p\n", z);
    }
  FIB_ITERATE_END;
  FIB_ITERATE_END(z);
  dump("iter end");

  fit_init(&i, &f);