aboutsummaryrefslogtreecommitdiffstats
path: root/packet-smb.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2002-01-25 09:42:21 +0000
committerGuy Harris <guy@alum.mit.edu>2002-01-25 09:42:21 +0000
commit42a38685cddcba3a2567d18025b75aee6c508f56 (patch)
tree154b86cc6e0ed9d547e95dc068944c44fd708387 /packet-smb.c
parent55bed21e4598765fa32e12086dedcb9cc1fc4c7d (diff)
downloadwireshark-42a38685cddcba3a2567d18025b75aee6c508f56.tar.gz
wireshark-42a38685cddcba3a2567d18025b75aee6c508f56.tar.bz2
wireshark-42a38685cddcba3a2567d18025b75aee6c508f56.zip
In the "Announce change to UAS or SAM" NETLOGON message, dissect the
"Large Serial Number" as a 64-bit little-endian integer, and dissect the "NT Date/Time" as a FILETIME by calling "dissect_smb_64bit_time()". Export "dissect_smb_64bit_time()" so that we can do so. svn path=/trunk/; revision=4609
Diffstat (limited to 'packet-smb.c')
-rw-r--r--packet-smb.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/packet-smb.c b/packet-smb.c
index 6e0bfab950..00c71ac25c 100644
--- a/packet-smb.c
+++ b/packet-smb.c
@@ -3,7 +3,7 @@
* Copyright 1999, Richard Sharpe <rsharpe@ns.aus.com>
* 2001 Rewrite by Ronnie Sahlberg and Guy Harris
*
- * $Id: packet-smb.c,v 1.198 2002/01/25 08:02:01 guy Exp $
+ * $Id: packet-smb.c,v 1.199 2002/01/25 09:42:21 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -1097,7 +1097,7 @@ dissect_smb_UTIME(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, int offse
return offset;
}
-static int
+int
dissect_smb_64bit_time(tvbuff_t *tvb, packet_info *pinfo, proto_tree *parent_tree, int offset, char *str, int hf_date)
{
proto_item *item = NULL;