From 9e72c475ae71b89b5ba8b90bcde6387d7b31823f Mon Sep 17 00:00:00 2001 From: Jeffrey Altman Date: Sat, 19 Nov 2016 01:23:08 -0500 Subject: [PATCH] hdb: need prototypes for hdb_ldap[i]_create Commit 4b6bd40106c01ca80ee8bfdb26b65d3e5a6b70fb 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 --- lib/hdb/hdb-ldap.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/hdb/hdb-ldap.c b/lib/hdb/hdb-ldap.c index 71e4b083f..e5861824e 100644 --- a/lib/hdb/hdb-ldap.c +++ b/lib/hdb/hdb-ldap.c @@ -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) {