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_nisplus.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_nisplus.c')
-rw-r--r-- | source3/passdb/pdb_nisplus.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/passdb/pdb_nisplus.c b/source3/passdb/pdb_nisplus.c index d6c0bcb672..2d37c3b8fb 100644 --- a/source3/passdb/pdb_nisplus.c +++ b/source3/passdb/pdb_nisplus.c @@ -1032,7 +1032,7 @@ BOOL pdb_getsampwnam(SAM_ACCOUNT * user, const char *sname) Routine to search the nisplus passwd file for an entry matching the username *************************************************************************/ -BOOL pdb_getsampwsid(SAM_ACCOUNT * user, DOM_SID *sid) +BOOL pdb_getsampwsid(SAM_ACCOUNT * user, const DOM_SID *sid) { uint32 rid; if (!sid_peek_check_rid(get_global_sam_sid(), sid, &rid)) |