wok-stable annotate gpxe/stuff/gcc.u @ rev 7674

Fixed linux. Need to make folder PWD/_pkg before adding bzImage to it. Also i'm force copying kernel config file now so we have the right config. It is copyed twice so its needed and doesn't hunt anything i think.
author Christopher Rogers <slaxemulator@gmail.com>
date Thu Dec 16 17:16:06 2010 +0000 (2010-12-16)
parents
children
rev   line source
pascal@4203 1 --- gpxe-0.9.3/src/net/ipv4.c
pascal@4203 2 +++ gpxe-0.9.3/src/net/ipv4.c
pascal@4203 3 @@ -227,7 +227,7 @@
pascal@4203 4 free_iob ( iobuf );
pascal@4203 5
pascal@4203 6 /** Check if the fragment series is over */
pascal@4203 7 - if ( !iphdr->frags & IP_MASK_MOREFRAGS ) {
pascal@4203 8 + if ( !(iphdr->frags & IP_MASK_MOREFRAGS) ) {
pascal@4203 9 iobuf = fragbuf->frag_iob;
pascal@4203 10 free_fragbuf ( fragbuf );
pascal@4203 11 return iobuf;