|
@@ -170,7 +170,10 @@ static void dump_eth_packet(const char *title, u8 *data, int len)
|
|
|
if (!(data[0] == 0xff && data[1] == 0xff)) {
|
|
|
if (protocol == ETH_P_IP) {
|
|
|
printk(KERN_DEBUG " src=%u.%u.%u.%u\n",
|
|
|
- NIPQUAD(ih->saddr));
|
|
|
+ ((unsigned char *)&(ih->saddr))[0],
|
|
|
+ ((unsigned char *)&(ih->saddr))[1],
|
|
|
+ ((unsigned char *)&(ih->saddr))[2],
|
|
|
+ ((unsigned char *)&(ih->saddr))[3]);
|
|
|
} else if (protocol == ETH_P_IPV6) {
|
|
|
#ifdef NIP6
|
|
|
printk(KERN_DEBUG " src=%x:%x:%x:%x:%x:%x:%x:%x\n",
|