diff options
author | Andrew Bartlett <abartlet@samba.org> | 2002-08-07 07:22:43 +0000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2002-08-07 07:22:43 +0000 |
commit | a51897cf9b431f9638b73a51e7a13d40e4e4c505 (patch) | |
tree | 7f42a4575c9237e7f1599f85a2b070f09e3238e7 /source3/passdb/pdb_smbpasswd.c | |
parent | 6f1245822e7d881b01325acf6ed57aa922071a36 (diff) | |
download | samba-a51897cf9b431f9638b73a51e7a13d40e4e4c505.tar.gz samba-a51897cf9b431f9638b73a51e7a13d40e4e4c505.tar.bz2 samba-a51897cf9b431f9638b73a51e7a13d40e4e4c505.zip |
Add const to a pile of const to *DOM_SID paramaters.
Andrew Bartlett
(This used to be commit fd0ebf976eb6e5fc25bc75ff471c69c3f3761e32)
Diffstat (limited to 'source3/passdb/pdb_smbpasswd.c')
-rw-r--r-- | source3/passdb/pdb_smbpasswd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/passdb/pdb_smbpasswd.c b/source3/passdb/pdb_smbpasswd.c index 8c7ba364b8..a5af0a786e 100644 --- a/source3/passdb/pdb_smbpasswd.c +++ b/source3/passdb/pdb_smbpasswd.c @@ -1417,7 +1417,7 @@ static BOOL smbpasswd_getsampwrid(struct pdb_methods *my_methods, SAM_ACCOUNT *s return True; } -static BOOL smbpasswd_getsampwsid(struct pdb_methods *my_methods, SAM_ACCOUNT * user, DOM_SID *sid) +static BOOL smbpasswd_getsampwsid(struct pdb_methods *my_methods, SAM_ACCOUNT * user, const DOM_SID *sid) { uint32 rid; if (!sid_peek_check_rid(get_global_sam_sid(), sid, &rid)) |