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

(-)arp.c (-1 / +1 lines)
Lines 537-543 Link Here
537
void
537
void
538
ether_print(u_char *cp)
538
ether_print(u_char *cp)
539
{
539
{
540
	printf("%x:%x:%x:%x:%x:%x", cp[0], cp[1], cp[2], cp[3], cp[4], cp[5]);
540
	printf("%02x:%02x:%02x:%02x:%02x:%02x", cp[0], cp[1], cp[2], cp[3], cp[4], cp[5]);
541
}
541
}
542
542
543
int
543
int

Return to bug 25584