/* \summary: Zephyr printer */
#ifdef HAVE_CONFIG_H
-#include "config.h"
+#include <config.h>
#endif
#include "netdissect-stdinc.h"
zb_string = z_buf;
while (*zb_string) {
- *zb_string = tolower((unsigned char)(*zb_string));
+ *zb_string = ND_TOLOWER((unsigned char)(*zb_string));
zb_string++;
}
int lose = 0;
int truncated = 0;
+ ndo->ndo_protocol = "zephyr";
/* squelch compiler warnings */
#define PARSE_STRING \
return;
trunc:
- ND_PRINT(" [|zephyr] (%d)", length);
+ nd_print_trunc(ndo);
return;
}