aboutsummaryrefslogtreecommitdiffstats
path: root/packet-smb-logon.c
diff options
context:
space:
mode:
authorTim Potter <tpot@samba.org>2003-01-31 04:11:25 +0000
committerTim Potter <tpot@samba.org>2003-01-31 04:11:25 +0000
commit1e85fd9ed57c720fd4d6060f0540d8161e554cbe (patch)
treeaf9587f45be7f155c77f881b949ea711e315ba5b /packet-smb-logon.c
parentab552d374661899453f7ceaf5e7e89f72727a8c1 (diff)
Modify dissect_nt_sid() function to return a string version of the SID.
Fix all callers to use the new function form. svn path=/trunk/; revision=7054
Diffstat (limited to 'packet-smb-logon.c')
-rw-r--r--packet-smb-logon.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/packet-smb-logon.c b/packet-smb-logon.c
index 767a7d591d..2811151ff8 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.28 2002/08/28 21:00:31 jmayer Exp $
+ * $Id: packet-smb-logon.c,v 1.29 2003/01/31 04:11:25 tpot Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -489,7 +489,8 @@ dissect_announce_change(tvbuff_t *tvb, packet_info *pinfo _U_, proto_tree *tree,
offset = ((offset + 3)/4)*4;
/* Domain SID */
- offset = dissect_nt_sid(tvb, offset, tree, "Domain");
+ offset = dissect_nt_sid(
+ tvb, offset, tree, "Domain", NULL);
}
/* NT version */
@@ -542,7 +543,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");
+ offset = dissect_nt_sid(tvb, offset, tree, "Domain", NULL);
}
/* NT version */