--- ./linux-include/netinet/in_systm.h.orig 2006-06-21 18:26:55.000000000 +0200 +++ ./linux-include/netinet/in_systm.h 2006-06-21 18:30:33.000000000 +0200 @@ -46,10 +46,10 @@ * the bytes before transmission at each protocol level. The n_ types * represent the types with the bytes in ``high-ender'' order. */ -typedef u_short n_short; /* short as received from the net */ -typedef u_int n_long; /* long as received from the net */ +typedef u_int16_t n_short; /* short as received from the net */ +typedef u_int32_t n_long; /* long as received from the net */ -typedef u_int n_time; /* ms since 00:00 GMT, byte rev */ +typedef u_int32_t n_time; /* ms since 00:00 GMT, byte rev */ #ifdef KERNEL n_time iptime __P((void));