[openbeosnetteam] Re: Why does the make environment automatically do a buildclean?

RCS file: /cvsroot/open-beos/net_kit/source/server/ipv4/ipv4.c,v
retrieving revision 1.42
retrieving revision 1.43
diff -u -d -r1.42 -r1.43
--- ipv4.c 13 May 2002 08:37:34 -0000 1.42
+++ ipv4.c 18 May 2002 21:19:00 -0000 1.43
@@ -777,7 +777,7 @@

  ipstat.ips_delivered++;
  if (proto[ip->ip_p] && proto[ip->ip_p]->pr_input) {
- return proto[ip->ip_p]->pr_input(m, hlen);
+ return; /* proto[ip->ip_p]->pr_input(m, hlen);*/
  } else {
  printf("proto[%d] = %p\n", ip->ip_p, proto[ip->ip_p]);
  goto bad;

Unless I'm mistaken (possible) then failing to call the next levels input
function will stop the packet in it's tracks as dead as a dodo. not qhat we
want! After all, that's why we waste the effort finding out if the input
function is valid.

You've done this in a few places. :(

david

----- Original Message -----
From: "Nathan Whitehorn" <nathan.whitehorn@xxxxxxxxxxx>
To: <openbeosnetteam@xxxxxxxxxxxxx>
Sent: Sunday, May 19, 2002 2:56 AM
Subject: [openbeosnetteam] Re: Why does the make environment automatically
do a buildclean?


> > The new build system fixes this as of earlier this week.
> >
> > Also, please fix the damned code you just broke in your commits to
> > allow the
> > server to work again!
>
> Which code would this be? You see, it works here. I would be very
> interested to know what I broke. I am also very sorry for causing any
> problems.
> -Nathan
>
> --
> Fortune Cookie Says:
>
> Death is God's way of telling you not to be such a wise guy.
>
>
>


Other related posts: