From 4377376832b9ce40c7a7b99e04c23c25d96915ca Mon Sep 17 00:00:00 2001 From: Herb Lewis Date: Wed, 19 Mar 2003 22:38:37 +0000 Subject: void function cannot return a value (besides the function called was a void) (This used to be commit 55681422e97ede0ff9446925c7678d6254b13878) --- source3/passdb/pdb_ldap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3/passdb') diff --git a/source3/passdb/pdb_ldap.c b/source3/passdb/pdb_ldap.c index 2571ecd33a..ca7b1c8170 100644 --- a/source3/passdb/pdb_ldap.c +++ b/source3/passdb/pdb_ldap.c @@ -2440,7 +2440,7 @@ static NTSTATUS ldapsam_setsamgrent(struct pdb_methods *my_methods, static void ldapsam_endsamgrent(struct pdb_methods *my_methods) { - return ldapsam_endsampwent(my_methods); + ldapsam_endsampwent(my_methods); } static NTSTATUS ldapsam_getsamgrent(struct pdb_methods *my_methods, -- cgit