static void print_attr_location_data(netdissect_options *, const u_char *, u_int, u_short);
static void print_basic_location_policy_rules(netdissect_options *, const u_char *, u_int, u_short);
static void print_attr_time(netdissect_options *, const u_char *, u_int, u_short);
-static void print_attr_vector64(netdissect_options *, register const u_char *, u_int, u_short);
+static void print_attr_vector64(netdissect_options *, const u_char *, u_int, u_short);
static void print_attr_strange(netdissect_options *, const u_char *, u_int, u_short);
data++;
ND_PRINT("[%s] ", tok2str(operator_name_vector, "unknown namespace %u", namespace_value));
- nd_printn(ndo, data, length - 1, NULL);
+ nd_printjn(ndo, data, length - 1);
return;
data += 8;
ND_PRINT("method \"");
- nd_printn(ndo, data, length - 20, NULL);
+ nd_printjn(ndo, data, length - 20);
ND_PRINT("\"");
return;
if (length > 10) {
ND_PRINT(", note well \"");
- nd_printn(ndo, data, length - 10, NULL);
+ nd_printjn(ndo, data, length - 10);
ND_PRINT("\"");
}
static void
print_attr_vector64(netdissect_options *ndo,
- register const u_char *data, u_int length, u_short attr_code _U_)
+ const u_char *data, u_int length, u_short attr_code _U_)
{
uint64_t data_value, i;
const char *sep = "";