summaryrefslogtreecommitdiff
path: root/print-802_15_4.c
diff options
context:
space:
mode:
Diffstat (limited to 'print-802_15_4.c')
-rw-r--r--print-802_15_4.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/print-802_15_4.c b/print-802_15_4.c
index 37f111bc..7e78e4a5 100644
--- a/print-802_15_4.c
+++ b/print-802_15_4.c
@@ -543,7 +543,7 @@ ieee802_15_4_print_addr(netdissect_options *ndo, const u_char *p,
ND_PRINT("%04x", GET_LE_U_2(p));
break;
case 8:
- ND_PRINT("%s", le64addr_string(ndo, p));
+ ND_PRINT("%s", GET_LE64ADDR_STRING(p));
break;
}
return;
@@ -1575,7 +1575,7 @@ ieee802_15_4_print_aux_sec_header(netdissect_options *ndo,
return -1;
}
if (ndo->ndo_vflag > 1) {
- ND_PRINT("KeySource %s, ", le64addr_string(ndo, p));
+ ND_PRINT("KeySource %s, ", GET_LE64ADDR_STRING(p));
}
p += 4;
caplen -= 4;