/* \summary: Simple Mail Transfer Protocol (SMTP) printer */
#ifdef HAVE_CONFIG_H
-#include "config.h"
+#include <config.h>
#endif
#include "netdissect-stdinc.h"
void
smtp_print(netdissect_options *ndo, const u_char *pptr, u_int len)
{
+ ndo->ndo_protocol = "smtp";
txtproto_print(ndo, pptr, len, "smtp", NULL, 0);
}