diff options
author | Simo Sorce <idra@samba.org> | 2003-10-06 01:38:46 +0000 |
---|---|---|
committer | Simo Sorce <idra@samba.org> | 2003-10-06 01:38:46 +0000 |
commit | c78f2d0bd15ecd2ba643bb141cc35a3405787aa1 (patch) | |
tree | 8a29f6f2f0aa220637bf3297abdb95a110120cba /source/lib/util_sid.c | |
parent | 096b997588880991af8e07034cc4f041daa87b97 (diff) | |
download | samba-c78f2d0bd15ecd2ba643bb141cc35a3405787aa1.tar.gz |
split some security related functions in their own files.
(no need to include all of smbd files to use some basic sec functions)
also minor compile fixes
couldn't compile to test these due to some kerberos problems wirh 3.0,
but on HEAD they're working well, so I suppose it's ok to commit
Diffstat (limited to 'source/lib/util_sid.c')
-rw-r--r-- | source/lib/util_sid.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/lib/util_sid.c b/source/lib/util_sid.c index fbb393770d5..50bbb4c72c6 100644 --- a/source/lib/util_sid.c +++ b/source/lib/util_sid.c @@ -638,7 +638,7 @@ void print_guid(GUID *guid) Tallocs a duplicate SID. ********************************************************************/ -DOM_SID *sid_dup_talloc(TALLOC_CTX *ctx, DOM_SID *src) +DOM_SID *sid_dup_talloc(TALLOC_CTX *ctx, const DOM_SID *src) { DOM_SID *dst; |