aboutsummaryrefslogtreecommitdiffstats
path: root/packet-sctp.c
diff options
context:
space:
mode:
authorMichael Tüxen <tuexen@fh-muenster.de>2003-10-03 20:18:15 +0000
committerMichael Tüxen <tuexen@fh-muenster.de>2003-10-03 20:18:15 +0000
commitd23f2e7347abdba0c0109ffe879e589b78b77701 (patch)
tree3911c6545064f879d6a1fdf772bbb263549052a9 /packet-sctp.c
parentbeb5e5e4e67747dccab299eb55c719ca6cb89ef3 (diff)
- Fixed a typo.
- Changed the default checksum algorithm from Adler32 to CRC32C. svn path=/trunk/; revision=8600
Diffstat (limited to 'packet-sctp.c')
-rw-r--r--packet-sctp.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/packet-sctp.c b/packet-sctp.c
index b43f9048f2..ff9d5f0eba 100644
--- a/packet-sctp.c
+++ b/packet-sctp.c
@@ -12,7 +12,7 @@
* - support for reassembly
* - error checking mode
*
- * $Id: packet-sctp.c,v 1.64 2003/09/21 20:06:01 gerald Exp $
+ * $Id: packet-sctp.c,v 1.65 2003/10/03 20:18:15 tuexen Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -279,7 +279,7 @@ static const value_string sctp_payload_proto_id_values[] = {
#define SCTP_CHECKSUM_AUTOMATIC 3
static gboolean show_always_control_chunks = TRUE;
-static gint sctp_checksum = SCTP_CHECKSUM_ADLER32;
+static gint sctp_checksum = SCTP_CHECKSUM_CRC32C;
/* adler32.c -- compute the Adler-32 checksum of a data stream
* Copyright (C) 1995-1996 Mark Adler
@@ -1093,7 +1093,7 @@ dissect_unknown_cause(tvbuff_t *cause_tvb, proto_tree *cause_tree, proto_item *c
static const value_string cause_code_values[] = {
{ INVALID_STREAM_IDENTIFIER, "Invalid stream identifier" },
- { MISSING_MANDATORY_PARAMETERS, "Missing mandator parameter" },
+ { MISSING_MANDATORY_PARAMETERS, "Missing mandatory parameter" },
{ STALE_COOKIE_ERROR, "Stale cookie error" },
{ OUT_OF_RESOURCE, "Out of resource" },
{ UNRESOLVABLE_ADDRESS, "Unresolvable address" },