summaryrefslogtreecommitdiffstats
path: root/print-sctp.c
diff options
context:
space:
mode:
Diffstat (limited to 'print-sctp.c')
-rw-r--r--print-sctp.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/print-sctp.c b/print-sctp.c
index ad0f785..e49fc41 100644
--- a/print-sctp.c
+++ b/print-sctp.c
@@ -35,9 +35,7 @@
/* \summary: Stream Control Transmission Protocol (SCTP) printer */
-#ifdef HAVE_CONFIG_H
#include <config.h>
-#endif
#include "netdissect-stdinc.h"
@@ -293,7 +291,7 @@ struct sctpUnifiedAbortHeavy{
};
/* For the graceful shutdown we must carry
- * the tag (in common header) and the highest consequitive acking value
+ * the tag (in common header) and the highest consecutive acking value
*/
struct sctpShutdown {
nd_uint32_t TSN_Seen;
@@ -554,8 +552,7 @@ sctp_print(netdissect_options *ndo,
chunkID = GET_U_1(chunkDescPtr->chunkID);
ND_PRINT("[%s] ", tok2str(sctp_chunkid_str, "Unknown chunk type: 0x%x",
chunkID));
- switch (chunkID)
- {
+ switch (chunkID) {
case SCTP_DATA :
{
const struct sctpDataPart *dataHdrPtr;