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_interface.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_interface.c')
-rw-r--r-- | source3/passdb/pdb_interface.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/passdb/pdb_interface.c b/source3/passdb/pdb_interface.c index daa3222c5a..f311223d77 100644 --- a/source3/passdb/pdb_interface.c +++ b/source3/passdb/pdb_interface.c @@ -123,7 +123,7 @@ static BOOL context_getsampwnam(struct pdb_context *context, SAM_ACCOUNT *sam_ac return False; } -static BOOL context_getsampwsid(struct pdb_context *context, SAM_ACCOUNT *sam_acct, DOM_SID *sid) +static BOOL context_getsampwsid(struct pdb_context *context, SAM_ACCOUNT *sam_acct, const DOM_SID *sid) { struct pdb_methods *curmethods; if ((!context)) { @@ -434,7 +434,7 @@ BOOL pdb_getsampwnam(SAM_ACCOUNT *sam_acct, const char *username) return pdb_context->pdb_getsampwnam(pdb_context, sam_acct, username); } -BOOL pdb_getsampwsid(SAM_ACCOUNT *sam_acct, DOM_SID *sid) +BOOL pdb_getsampwsid(SAM_ACCOUNT *sam_acct, const DOM_SID *sid) { struct pdb_context *pdb_context = pdb_get_static_context(False); |