From a341721309b430eb6ec5f28311aecd7816e5dc90 Mon Sep 17 00:00:00 2001 From: Wietse Venema Date: Fri, 8 Jul 2005 00:00:00 -0500 Subject: [PATCH] postfix-2.3-20050708 --- postfix/HISTORY | 5 +++++ postfix/src/global/mail_version.h | 2 +- postfix/src/global/scache_clnt.c | 2 ++ 3 files changed, 8 insertions(+), 1 deletion(-) diff --git a/postfix/HISTORY b/postfix/HISTORY index 76b932dfd..3f7eb9851 100644 --- a/postfix/HISTORY +++ b/postfix/HISTORY @@ -10978,6 +10978,11 @@ Apologies for any names omitted. closing the socket that it just sent. Files: scache/scache.c, global/scache_clnt.c. +20050708 + + Bugfix: missing returns in 20050706 caching disabling code. + File: global/scache_clnt.c. + Open problems: Look for systems with XPG basename() declared in , diff --git a/postfix/src/global/mail_version.h b/postfix/src/global/mail_version.h index 0476ecb43..87fbef89d 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 "20050707" +#define MAIL_RELEASE_DATE "20050708" #define MAIL_VERSION_NUMBER "2.3" #define VAR_MAIL_VERSION "mail_version" diff --git a/postfix/src/global/scache_clnt.c b/postfix/src/global/scache_clnt.c index 4749d6931..f8098eea3 100644 --- a/postfix/src/global/scache_clnt.c +++ b/postfix/src/global/scache_clnt.c @@ -220,6 +220,7 @@ static int scache_clnt_find_endp(SCACHE *scache, const char *endp_label, sleep(1); /* XXX make configurable */ clnt_stream_recover(sp->clnt_stream); } + return (-1); } /* scache_clnt_save_dest - create destination/endpoint association */ @@ -361,6 +362,7 @@ static int scache_clnt_find_dest(SCACHE *scache, const char *dest_label, sleep(1); /* XXX make configurable */ clnt_stream_recover(sp->clnt_stream); } + return (-1); } /* scache_clnt_size - dummy */