aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-dcerpc-nt.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2004-08-03 02:28:49 +0000
committerGuy Harris <guy@alum.mit.edu>2004-08-03 02:28:49 +0000
commit13bb12c4f1e8611202bca516e65cddc5e29e45ce (patch)
treef31a0b745dea790a0070678be6db8442ba481cac /epan/dissectors/packet-dcerpc-nt.c
parent6e683f009886ed74c315f455bfedf31e496f7ba9 (diff)
Move a bunch of stuff that's more Windows-related than SMB-related to
"packet-windows-common.[ch]". svn path=/trunk/; revision=11592
Diffstat (limited to 'epan/dissectors/packet-dcerpc-nt.c')
-rw-r--r--epan/dissectors/packet-dcerpc-nt.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/epan/dissectors/packet-dcerpc-nt.c b/epan/dissectors/packet-dcerpc-nt.c
index 0c899d57de..411eee6001 100644
--- a/epan/dissectors/packet-dcerpc-nt.c
+++ b/epan/dissectors/packet-dcerpc-nt.c
@@ -33,8 +33,7 @@
#include <epan/packet.h>
#include "packet-dcerpc.h"
#include "packet-dcerpc-nt.h"
-#include "smb.h"
-#include "packet-smb-common.h" /* for dissect_smb_64bit_time() */
+#include "packet-windows-common.h"
/*
* This file contains helper routines that are used by the DCERPC over SMB
@@ -219,7 +218,7 @@ dissect_ndr_counted_byte_array(tvbuff_t *tvb, int offset,
}
/* This function is used to dissect a DCERPC encoded 64 bit time value.
- XXX it should be fixed both here and in dissect_smb_64bit_time so
+ XXX it should be fixed both here and in dissect_nt_64bit_time so
it can handle both BIG and LITTLE endian encodings
*/
int
@@ -237,7 +236,7 @@ dissect_ndr_nt_NTTIME (tvbuff_t *tvb, int offset,
ALIGN_TO_4_BYTES;
- offset = dissect_smb_64bit_time(tvb, tree, offset, hf_index);
+ offset = dissect_nt_64bit_time(tvb, tree, offset, hf_index);
return offset;
}