aboutsummaryrefslogtreecommitdiffstats
path: root/packet-smb-logon.c
diff options
context:
space:
mode:
authorRonnie Sahlberg <ronnie_sahlberg@ozemail.com.au>2003-05-21 10:16:10 +0000
committerRonnie Sahlberg <ronnie_sahlberg@ozemail.com.au>2003-05-21 10:16:10 +0000
commit14f5d761c197c141b6577c208e991f822394009b (patch)
tree3a16f066c01d0f011a856f62f4582998df0ba517 /packet-smb-logon.c
parent8271c6a106335903b253f784f923d0fd0780a0ae (diff)
Change the interface to dissect_nt_sid so that we can provide a hf field to use
to describe the sid instead of the default smb.sid one svn path=/trunk/; revision=7708
Diffstat (limited to 'packet-smb-logon.c')
-rw-r--r--packet-smb-logon.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/packet-smb-logon.c b/packet-smb-logon.c
index 6d605eac70..a26b68a5b5 100644
--- a/packet-smb-logon.c
+++ b/packet-smb-logon.c
@@ -2,7 +2,7 @@
* Routines for SMB net logon packet dissection
* Copyright 2000, Jeffrey C. Foster <jfoste@woodward.com>
*
- * $Id: packet-smb-logon.c,v 1.32 2003/05/01 18:11:20 guy Exp $
+ * $Id: packet-smb-logon.c,v 1.33 2003/05/21 10:16:10 sahlberg Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -511,7 +511,7 @@ dissect_announce_change(tvbuff_t *tvb, packet_info *pinfo _U_, proto_tree *tree,
/* Domain SID */
offset = dissect_nt_sid(
- tvb, offset, tree, "Domain", NULL);
+ tvb, offset, tree, "Domain", NULL, -1);
}
/* NT version */
@@ -564,7 +564,7 @@ dissect_smb_sam_logon_req(tvbuff_t *tvb, packet_info *pinfo _U_, proto_tree *tre
offset = ((offset + 3)/4)*4;
/* Domain SID */
- offset = dissect_nt_sid(tvb, offset, tree, "Domain", NULL);
+ offset = dissect_nt_sid(tvb, offset, tree, "Domain", NULL, -1);
}
/* NT version */