2
0
mirror of https://github.com/vdukhovni/postfix synced 2025-08-29 13:18:12 +00:00

postfix-2.5-20070525

This commit is contained in:
Wietse Venema 2007-05-25 00:00:00 -05:00 committed by Viktor Dukhovni
parent 5abebda659
commit cae5caf539
4 changed files with 8 additions and 3 deletions

View File

@ -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

View File

@ -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

View File

@ -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);

View File

@ -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);