Skip to content

Commit

Permalink
Fix to build with cyrus sasl 2.1.25
Browse files Browse the repository at this point in the history
  • Loading branch information
swills authored and dustin committed Dec 3, 2011
1 parent 7bc93a6 commit ee486ab
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion sasl_defs.c
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sasl/saslplug.h>

#ifdef HAVE_SASL_CB_GETCONF
/* The locations we may search for a SASL config file if the user didn't
Expand Down Expand Up @@ -141,7 +142,7 @@ static sasl_callback_t sasl_callbacks[] = {
{ SASL_CB_SERVER_USERDB_CHECKPASS, sasl_server_userdb_checkpass, NULL },
#endif

{ SASL_CB_LOG, sasl_log, NULL },
{ SASL_CB_LOG, (sasl_callback_ft)sasl_log, NULL },

#ifdef HAVE_SASL_CB_GETCONF
{ SASL_CB_GETCONF, sasl_getconf, NULL },
Expand Down

0 comments on commit ee486ab

Please sign in to comment.