]> The Tcpdump Group git mirrors - tcpdump/blobdiff - print-sip.c
Lose some more unnecessary #include lines. [skip ci]
[tcpdump] / print-sip.c
index dcf5a38c02c75373710752e89f92d7797c805d88..bfbfddfd4749237d4156f1e12daa05d10e83e97f 100644 (file)
 /* \summary: Session Initiation Protocol (SIP) printer */
 
 #ifdef HAVE_CONFIG_H
-#include "config.h"
+#include <config.h>
 #endif
 
 #include "netdissect-stdinc.h"
 
 #include "netdissect.h"
-#include "extract.h"
 
 static const char *sipcmds[] = {
        "ACK",
@@ -50,5 +49,6 @@ static const char *sipcmds[] = {
 void
 sip_print(netdissect_options *ndo, const u_char *pptr, u_int len)
 {
-       txtproto_print(ndo, pptr, len, "sip", sipcmds, RESP_CODE_SECOND_TOKEN);
+       ndo->ndo_protocol = "sip";
+       txtproto_print(ndo, pptr, len, sipcmds, RESP_CODE_SECOND_TOKEN);
 }