diff options
author | Jeremy Allison <jra@samba.org> | 2003-11-21 19:20:07 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2003-11-21 19:20:07 +0000 |
commit | bdea2e8a47f98d7146f5d1dc4e74b16097308d4c (patch) | |
tree | b5a1d0a6dce2f2481c4c81f99e2897c7c1df8a11 /source3/param | |
parent | 478bb592a3070b2dee2e93368e5d3944b9e6ba42 (diff) | |
download | samba-bdea2e8a47f98d7146f5d1dc4e74b16097308d4c.tar.gz samba-bdea2e8a47f98d7146f5d1dc4e74b16097308d4c.tar.bz2 samba-bdea2e8a47f98d7146f5d1dc4e74b16097308d4c.zip |
Fix Jerry's no-proto bug :-).
Jeremy.
(This used to be commit 48153f7a07cc04b849a79778fdc3e76af6c6eb13)
Diffstat (limited to 'source3/param')
-rw-r--r-- | source3/param/loadparm.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/source3/param/loadparm.c b/source3/param/loadparm.c index 18e53a7f29..8643ecb028 100644 --- a/source3/param/loadparm.c +++ b/source3/param/loadparm.c @@ -3002,7 +3002,7 @@ static char* append_ldap_suffix( const char *str ) return suffix_string; } -char *lp_ldap_machine_suffix() +char *lp_ldap_machine_suffix(void) { if (Globals.szLdapMachineSuffix[0]) return append_ldap_suffix(Globals.szLdapMachineSuffix); @@ -3010,7 +3010,7 @@ char *lp_ldap_machine_suffix() return lp_string(Globals.szLdapSuffix); } -char *lp_ldap_user_suffix() +char *lp_ldap_user_suffix(void) { if (Globals.szLdapUserSuffix[0]) return append_ldap_suffix(Globals.szLdapUserSuffix); @@ -3018,7 +3018,7 @@ char *lp_ldap_user_suffix() return lp_string(Globals.szLdapSuffix); } -char *lp_ldap_group_suffix() +char *lp_ldap_group_suffix(void) { if (Globals.szLdapGroupSuffix[0]) return append_ldap_suffix(Globals.szLdapGroupSuffix); @@ -3026,7 +3026,7 @@ char *lp_ldap_group_suffix() return lp_string(Globals.szLdapSuffix); } -char *lp_ldap_idmap_suffix() +char *lp_ldap_idmap_suffix(void) { if (Globals.szLdapIdmapSuffix[0]) return append_ldap_suffix(Globals.szLdapIdmapSuffix); |