summaryrefslogtreecommitdiffstats
path: root/source/include
diff options
context:
space:
mode:
authorLuke Leighton <lkcl@samba.org>1998-12-08 00:30:23 +0000
committerLuke Leighton <lkcl@samba.org>1998-12-08 00:30:23 +0000
commitf11eb4165836ce8d15a453d37c4e07913562d778 (patch)
tree075c67750450ac2845d89614f73dd67325af6b71 /source/include
parentd06d6369942828ec89e90f99bd0d0d3f91d61d13 (diff)
downloadsamba-f11eb4165836ce8d15a453d37c4e07913562d778.tar.gz
samba-f11eb4165836ce8d15a453d37c4e07913562d778.tar.xz
samba-f11eb4165836ce8d15a453d37c4e07913562d778.zip
compilation warnings due to missing (void) in ldap_close_connection.
Diffstat (limited to 'source/include')
-rw-r--r--source/include/proto.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/include/proto.h b/source/include/proto.h
index f237c08999b..ae77d053ea8 100644
--- a/source/include/proto.h
+++ b/source/include/proto.h
@@ -1373,7 +1373,7 @@ BOOL pm_process( char *FileName,
/*The following definitions come from passdb/ldap.c */
BOOL ldap_open_connection(BOOL modify);
-void ldap_close_connection();
+void ldap_close_connection(void);
BOOL ldap_search_for(char *filter);
BOOL ldap_search_by_name(const char *user);
BOOL ldap_search_by_uid(int uid);