aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-dtpt.c
diff options
context:
space:
mode:
authorpascal <pascal@localhost>2012-05-08 20:25:55 +0000
committerpascal <pascal@localhost>2012-05-08 20:25:55 +0000
commitbdeea8408e858ff1b51e4a2227ec1169d239a420 (patch)
tree21bebbda4246b6558e4ecd6a1262c7889b2337c4 /epan/dissectors/packet-dtpt.c
parent19a766b15290cb90742b9ccaadf45f98b15d20e8 (diff)
Fix last parameter for tvb_get_guid() call
svn path=/trunk/; revision=42517
Diffstat (limited to 'epan/dissectors/packet-dtpt.c')
-rw-r--r--epan/dissectors/packet-dtpt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-dtpt.c b/epan/dissectors/packet-dtpt.c
index 8c8ab1fe96..cf2c694cf2 100644
--- a/epan/dissectors/packet-dtpt.c
+++ b/epan/dissectors/packet-dtpt.c
@@ -275,7 +275,7 @@ dissect_dtpt_guid(tvbuff_t *tvb, guint offset, proto_tree *tree, int hfindex)
const gchar *guid_name = NULL;
if (guid_length) {
- tvb_get_guid(tvb, offset+4, &guid, 1);
+ tvb_get_guid(tvb, offset+4, &guid, ENC_LITTLE_ENDIAN);
}
else {
memset(&guid, 0, sizeof(guid));