M port/devlance.c => port/devlance.c +0 -1
@@ 799,7 799,6 @@ lancekproc(void *arg)
break;
qunlock(e);
}
-
/*
* If no match, see if any stream has type -1.
* It matches all packets.
M port/stnoether.c => port/stnoether.c +1 -1
@@ 186,7 186,7 @@ noetheriput(Queue *q, Block *bp)
circuit = (nh->circuit[2]<<16) | (nh->circuit[1]<<8) | nh->circuit[0];
s = (nh->sum[1]<<8) | nh->sum[0];
if(s && s!=nonetcksum(bp, ETHERHDRSIZE)){
-/* print("checksum error %ux %ux\n", s, (nh->sum[1]<<8) | nh->sum[0]); /**/
+ print("checksum error %ux %ux\n", s, (nh->sum[1]<<8) | nh->sum[0]); /**/
freeb(bp);
return;
}