summaryrefslogtreecommitdiff
path: root/print-krb.c
diff options
context:
space:
mode:
Diffstat (limited to 'print-krb.c')
-rw-r--r--print-krb.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/print-krb.c b/print-krb.c
index e726cee9..bcc81bf1 100644
--- a/print-krb.c
+++ b/print-krb.c
@@ -137,7 +137,7 @@ krb4_print_hdr(netdissect_options *ndo,
return (cp);
trunc:
- ND_PRINT((ndo, tstr));
+ ND_PRINT((ndo, "%s", tstr));
return (NULL);
#undef PRINT
@@ -159,7 +159,7 @@ krb4_print(netdissect_options *ndo,
kp = (struct krb *)cp;
if ((&kp->type) >= ndo->ndo_snapend) {
- ND_PRINT((ndo, tstr));
+ ND_PRINT((ndo, "%s", tstr));
return;
}
@@ -218,7 +218,7 @@ krb4_print(netdissect_options *ndo,
return;
trunc:
- ND_PRINT((ndo, tstr));
+ ND_PRINT((ndo, "%s", tstr));
}
void
@@ -230,7 +230,7 @@ krb_print(netdissect_options *ndo,
kp = (struct krb *)dat;
if (dat >= ndo->ndo_snapend) {
- ND_PRINT((ndo, tstr));
+ ND_PRINT((ndo, "%s", tstr));
return;
}