Skip to content

Commit

Permalink
Fix typo disabling static-linked LDAP back end
Browse files Browse the repository at this point in the history
  • Loading branch information
greghudson committed Nov 15, 2012
1 parent d380f21 commit daede6e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/kdb/kdb5.c
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,7 @@ kdb_load_library(krb5_context kcontext, char *lib_name, db_library *libptr)
if (strcmp(lib_name, "db2") == 0)
vftabl_addr = &krb5_db2_kdb_function_table;
#ifdef ENABLE_LDAP
if (strcmp(lib_name, "ldap") == 0)
if (strcmp(lib_name, "kldap") == 0)
vftabl_addr = &krb5_ldap_kdb_function_table;
#endif
if (!vftabl_addr) {
Expand Down

0 comments on commit daede6e

Please sign in to comment.