summaryrefslogtreecommitdiff
path: root/source3/passdb
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2002-05-24 03:25:36 +0000
committerAndrew Bartlett <abartlet@samba.org>2002-05-24 03:25:36 +0000
commit222f4d90762b177551f11dba5e51761099c64edf (patch)
tree9078d8157322808ed49167749462a48f19bf2cde /source3/passdb
parente27062ce752787f14b1098a1f58de557456ba65b (diff)
downloadsamba-222f4d90762b177551f11dba5e51761099c64edf.tar.gz
samba-222f4d90762b177551f11dba5e51761099c64edf.tar.bz2
samba-222f4d90762b177551f11dba5e51761099c64edf.zip
Make function match the defintion require for assignment as a function
pointer. (This used to be commit 38012edaca4c181f3d3a9e9df4fc434bba78f9dc)
Diffstat (limited to 'source3/passdb')
-rw-r--r--source3/passdb/pdb_unix.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/passdb/pdb_unix.c b/source3/passdb/pdb_unix.c
index d7574e6e13..1c0ede76d3 100644
--- a/source3/passdb/pdb_unix.c
+++ b/source3/passdb/pdb_unix.c
@@ -69,7 +69,7 @@ static BOOL unixsam_getsampwrid (struct pdb_methods *methods,
Adds an existing SAM_ACCOUNT
****************************************************************************/
-static BOOL unixsam_add_sam_account (struct pdb_methods *methods, const SAM_ACCOUNT *newpwd)
+static BOOL unixsam_add_sam_account (struct pdb_methods *methods, SAM_ACCOUNT *newpwd)
{
DEBUG(0,("pdb_unix should not be listed as the first passdb backend! You can't add users to it.\n"));
return False;