<div dir="ltr">Hi Rob,<div><br></div><div>In ifconfig.c, there is a glitch in function __get_addrinfo()__</div><div>when computing the prefix length, the max values should have been</div><div><br></div><div>AF_INET ===> 32</div>
<div>AF_INET6 ===> 128</div><div><br></div><div><div>@@ -88,7 +88,7 @@</div><div>   freeaddrinfo(result);</div><div> </div><div>   len = -1;</div><div>-  if (slash) len = atolx_range(slash+1, 0, (af == AF_INET) ? 128 : 32);</div>
<div>+  if (slash) len = atolx_range(slash+1, 0, (af == AF_INET) ? 32 : 128);</div><div> </div><div>   return len;</div></div><div><br></div><div><br></div><div>but it was other way around. Attached is the patch for the same.</div>
<div><br></div><div><br></div><div>regards,</div><div>Ashwini</div><div><br></div><div>PS:- The submissions for __modprobe__ and __getty__ are in the mail box from long time, hope you will get to that soon.<br></div></div>