remove hdb ldap create declarations

The hdb_ldap_create and hdb_ldapi_create prototypes use the "static"
keyword, but the functions themselves are not implemented as static.

Heimdal's buildsystem dynamically adds function declarations to
hdb-protos.h based on the actual function implementations. Those
declarations in hdb-protos.h are not declared as static.

Since the build system generates the declarations dynamically, just
remove them from hdb-ldap.c.
This commit is contained in:
Ken Dreyer
2014-03-27 10:07:29 -06:00
parent f7d76c2b66
commit 10519ce50d

View File

@@ -44,9 +44,6 @@
static krb5_error_code LDAP__connect(krb5_context context, HDB *);
static krb5_error_code LDAP_close(krb5_context context, HDB *);
static krb5_error_code hdb_ldap_create(krb5_context context, HDB **, const char *);
static krb5_error_code hdb_ldapi_create(krb5_context context, HDB **, const char *);
static krb5_error_code
LDAP_message2entry(krb5_context context, HDB * db, LDAPMessage * msg,
int flags, hdb_entry_ex * ent);