Re: More gcc3 compiler warnings
This is not a Hurd-specific problem. Please take it up on the gcc or libc lists. ___ Bug-hurd mailing list [EMAIL PROTECTED] http://mail.gnu.org/mailman/listinfo/bug-hurd
More gcc3 compiler warnings
Hi, As I had previously mentioned gcc3 warns that, attrs_exist = ntohl (*p++); and attrs_exist = ntohl (*(p++)); ' operation on `p' may be undefined'. However, in nfs/rpc.c we have: switch (ntohl (*p++)) . The only way I have though of fixing this so far is with p++; swit