1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-24 21:34:56 +03:00

Fixed a couple of const issues with the new code.

Jeremy.
(This used to be commit e9fb6e4508)
This commit is contained in:
Jeremy Allison 2003-07-07 17:04:48 +00:00
parent 5365869b68
commit 436555aaa7
2 changed files with 3 additions and 3 deletions

View File

@ -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;

View File

@ -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;