diff options
author | Jeremy Allison <jra@samba.org> | 2003-07-07 17:04:48 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2003-07-07 17:04:48 +0000 |
commit | 436555aaa7fc1ba7459d25c2514c847cd127b13b (patch) | |
tree | 761c3aadfebdd3b5c9d08a7518860d67eb45ecbf /source3/smbd/uid.c | |
parent | 5365869b683e696863eb27545dc4608edff3408a (diff) | |
download | samba-436555aaa7fc1ba7459d25c2514c847cd127b13b.tar.gz samba-436555aaa7fc1ba7459d25c2514c847cd127b13b.tar.xz samba-436555aaa7fc1ba7459d25c2514c847cd127b13b.zip |
Fixed a couple of const issues with the new code.
Jeremy.
(This used to be commit e9fb6e45086a6170b6f6d5d3295398708ab1af58)
Diffstat (limited to 'source3/smbd/uid.c')
-rw-r--r-- | source3/smbd/uid.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/smbd/uid.c b/source3/smbd/uid.c index 04ff0faa280..6d67a63ccd1 100644 --- a/source3/smbd/uid.c +++ b/source3/smbd/uid.c @@ -565,7 +565,7 @@ static struct gid_sid_cache { Find a SID given a uid. *****************************************************************/ -static BOOL fetch_sid_from_uid_cache(const DOM_SID *psid, uid_t uid) +static BOOL fetch_sid_from_uid_cache(DOM_SID *psid, uid_t uid) { struct uid_sid_cache *pc; |