diff options
author | Andrew Bartlett <abartlet@samba.org> | 2002-05-24 03:25:36 +0000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2002-05-24 03:25:36 +0000 |
commit | 222f4d90762b177551f11dba5e51761099c64edf (patch) | |
tree | 9078d8157322808ed49167749462a48f19bf2cde | |
parent | e27062ce752787f14b1098a1f58de557456ba65b (diff) | |
download | samba-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)
-rw-r--r-- | source3/passdb/pdb_unix.c | 2 |
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; |