View | Details | Raw Unified | Return to bug 201382
Collapse All | Expand All

(-)dhcprelay.c (-1 / +1 lines)
Lines 186-192 Link Here
186
	printf(" %d",eh->ether_type);
186
	printf(" %d",eh->ether_type);
187
    }
187
    }
188
    // check for IPv4 packets
188
    // check for IPv4 packets
189
    if (eh->ether_type!=8) { 
189
    if (eh->ether_type != htons(0x800)) { 
190
	if (DEBUG>1) printf("\n");
190
	if (DEBUG>1) printf("\n");
191
	return;
191
	return;
192
    }
192
    }
193
193

Return to bug 201382