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 | |
parent | 5365869b683e696863eb27545dc4608edff3408a (diff) | |
download | samba-436555aaa7fc1ba7459d25c2514c847cd127b13b.tar.gz samba-436555aaa7fc1ba7459d25c2514c847cd127b13b.tar.bz2 samba-436555aaa7fc1ba7459d25c2514c847cd127b13b.zip |
Fixed a couple of const issues with the new code.
Jeremy.
(This used to be commit e9fb6e45086a6170b6f6d5d3295398708ab1af58)
-rw-r--r-- | source3/passdb/passdb.c | 4 | ||||
-rw-r--r-- | source3/smbd/uid.c | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/source3/passdb/passdb.c b/source3/passdb/passdb.c index 4c50b05107..2a903deff0 100644 --- a/source3/passdb/passdb.c +++ b/source3/passdb/passdb.c @@ -1080,7 +1080,7 @@ DOM_SID *local_uid_to_sid(DOM_SID *psid, uid_t uid) Convert a SID to uid - locally. ****************************************************************************/ -BOOL local_sid_to_uid(uid_t *puid, DOM_SID *psid, enum SID_NAME_USE *name_type) +BOOL local_sid_to_uid(uid_t *puid, const DOM_SID *psid, enum SID_NAME_USE *name_type) { DOM_SID dom_sid; uint32 rid; @@ -1177,7 +1177,7 @@ DOM_SID *local_gid_to_sid(DOM_SID *psid, gid_t gid) Convert a SID to gid - locally. ****************************************************************************/ -BOOL local_sid_to_gid(gid_t *pgid, DOM_SID *psid, enum SID_NAME_USE *name_type) +BOOL local_sid_to_gid(gid_t *pgid, const DOM_SID *psid, enum SID_NAME_USE *name_type) { DOM_SID dom_sid; uint32 rid; diff --git a/source3/smbd/uid.c b/source3/smbd/uid.c index 04ff0faa28..6d67a63ccd 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; |