diff --git a/postfix/HISTORY b/postfix/HISTORY index 3b57177c4..091c48df1 100644 --- a/postfix/HISTORY +++ b/postfix/HISTORY @@ -13563,6 +13563,11 @@ Apologies for any names omitted. Duchovni. Files: smtpd/smtpd.c xsasl/xsasl_cyrus_server.c, (and xsasl/xsasl_cyrus_client.c for future expansion). +20070525 + + Bugfix (introduced 20070523) the sasl_set_path() function + name was mis-speeled. + Wish list: Update attr_print/scan() so they can send/receive file diff --git a/postfix/src/global/mail_version.h b/postfix/src/global/mail_version.h index 2e40735c9..d11c13f5e 100644 --- a/postfix/src/global/mail_version.h +++ b/postfix/src/global/mail_version.h @@ -20,7 +20,7 @@ * Patches change both the patchlevel and the release date. Snapshots have no * patchlevel; they change the release date only. */ -#define MAIL_RELEASE_DATE "20070524" +#define MAIL_RELEASE_DATE "20070525" #define MAIL_VERSION_NUMBER "2.5" #ifdef SNAPSHOT diff --git a/postfix/src/xsasl/xsasl_cyrus_client.c b/postfix/src/xsasl/xsasl_cyrus_client.c index 1b6f0257d..536de2739 100644 --- a/postfix/src/xsasl/xsasl_cyrus_client.c +++ b/postfix/src/xsasl/xsasl_cyrus_client.c @@ -259,7 +259,7 @@ XSASL_CLIENT_IMPL *xsasl_cyrus_client_init(const char *unused_client_type, if (*var_cyrus_conf_path) { #ifdef SASL_PATH_TYPE_CONFIG /* Cyrus SASL 2.1.22 */ - if (set_sasl_path(SASL_PATH_TYPE_CONFIG, + if (sasl_set_path(SASL_PATH_TYPE_CONFIG, var_cyrus_conf_path) != SASL_OK) msg_warn("failed to set Cyrus SASL configuration path: \"%s\"", var_cyrus_conf_path); diff --git a/postfix/src/xsasl/xsasl_cyrus_server.c b/postfix/src/xsasl/xsasl_cyrus_server.c index 0cd6aa383..d3b802107 100644 --- a/postfix/src/xsasl/xsasl_cyrus_server.c +++ b/postfix/src/xsasl/xsasl_cyrus_server.c @@ -215,7 +215,7 @@ XSASL_SERVER_IMPL *xsasl_cyrus_server_init(const char *unused_server_type, if (*var_cyrus_conf_path) { #ifdef SASL_PATH_TYPE_CONFIG /* Cyrus SASL 2.1.22 */ - if (set_sasl_path(SASL_PATH_TYPE_CONFIG, + if (sasl_set_path(SASL_PATH_TYPE_CONFIG, var_cyrus_conf_path) != SASL_OK) msg_warn("failed to set Cyrus SASL configuration path: \"%s\"", var_cyrus_conf_path);