summaryrefslogtreecommitdiff
path: root/plugins/gryphon
diff options
context:
space:
mode:
authorJörg Mayer <jmayer@loplof.de>2003-10-06 15:41:53 +0000
committerJörg Mayer <jmayer@loplof.de>2003-10-06 15:41:53 +0000
commit7a593c3d3cafbac4158b18245f674b4ae547cad1 (patch)
treea1f5003f0b66bcc36e9e2255cd72163248e5ce34 /plugins/gryphon
parentf7e5d494a2e75aca2aac12e6d169b21d59f83896 (diff)
downloadwireshark-7a593c3d3cafbac4158b18245f674b4ae547cad1.tar.gz
check in the following comment:
/* XXX This code is neither Endianess independent, nor will it work * on platforms that do not support the *optional* guin64 type */ svn path=/trunk/; revision=8626
Diffstat (limited to 'plugins/gryphon')
-rw-r--r--plugins/gryphon/packet-gryphon.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/plugins/gryphon/packet-gryphon.c b/plugins/gryphon/packet-gryphon.c
index 4d68a36b3c..b7844c0635 100644
--- a/plugins/gryphon/packet-gryphon.c
+++ b/plugins/gryphon/packet-gryphon.c
@@ -3,7 +3,7 @@
* By Steve Limkemann <stevelim@dgtech.com>
* Copyright 1998 Steve Limkemann
*
- * $Id: packet-gryphon.c,v 1.41 2003/10/06 02:01:47 jmayer Exp $
+ * $Id: packet-gryphon.c,v 1.42 2003/10/06 15:41:53 jmayer Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -914,6 +914,9 @@ resp_time(tvbuff_t *tvb, int offset, proto_tree *pt)
time_t timestamp;
unsigned char date[45];
+ /* XXX This code is neither Endianess independent, nor will it work
+ * on platforms that do not support the *optional* guin64 type
+ */
ts.lng[1] = tvb_get_ntohl(tvb, offset);
ts.lng[0] = tvb_get_ntohl(tvb, offset + 4);
timestamp = ts.lnglng / 100000L;