aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRonnie Sahlberg <ronnie_sahlberg@ozemail.com.au>2004-05-27 08:33:22 +0000
committerRonnie Sahlberg <ronnie_sahlberg@ozemail.com.au>2004-05-27 08:33:22 +0000
commitbca8b528dbc8b8d7f9e74cddfa4da7766fa3b507 (patch)
tree2b11ad855a6423271aaa5963ecc2a4656376397f
parent581724041a7a30c1513a40ed307735546451487c (diff)
the isns timestamp is in fact a 64 bit integer and not a 32 bit integer.
declaring it properly will make ethereal dissect it properly as well instead of crashing svn path=/trunk/; revision=11013
-rw-r--r--packet-isns.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/packet-isns.c b/packet-isns.c
index 96b0a25e97..3bf4d79812 100644
--- a/packet-isns.c
+++ b/packet-isns.c
@@ -7,7 +7,7 @@
* Copyright 2003, Elipsan, Gareth Bushell <gbushell@elipsan.com>
* (c) 2004 Ronnie Sahlberg updates
*
- * $Id: packet-isns.c,v 1.7 2004/05/13 13:49:32 sahlberg Exp $
+ * $Id: packet-isns.c,v 1.8 2004/05/27 08:33:22 sahlberg Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -1813,7 +1813,7 @@ void proto_register_isns(void)
{ &hf_isns_timestamp,
{ "Timestamp","isns.timestamp",
- FT_UINT32, BASE_DEC, NULL, 0x0,
+ FT_UINT64, BASE_DEC, NULL, 0x0,
"Timestamp in Seconds", HFILL }},
{ &hf_isns_esi_interval,