hdb: need prototypes for hdb_ldap[i]_create

Commit 4b6bd40106 made hdb_ldap_create and
hdb_ldapi_create static in the OPENLDAP_MODULE case.  However, by
failing to leave a blank line between the static and the function
declaration the perl program that produces the hdb-protos.h file
skips the functions.

Add appropriate spacing.

Change-Id: I9ad24176fc31a0bce92b51f7adab141e8fa70fa3
This commit is contained in:
Jeffrey Altman
2016-11-19 01:23:08 -05:00
parent 11d1c81c27
commit 9e72c475ae

View File

@@ -2027,6 +2027,7 @@ hdb_ldap_common(krb5_context context,
#ifdef OPENLDAP_MODULE
static
#endif
krb5_error_code
hdb_ldap_create(krb5_context context, HDB ** db, const char *arg)
{
@@ -2036,6 +2037,7 @@ hdb_ldap_create(krb5_context context, HDB ** db, const char *arg)
#ifdef OPENLDAP_MODULE
static
#endif
krb5_error_code
hdb_ldapi_create(krb5_context context, HDB ** db, const char *arg)
{