2
0
mirror of https://github.com/vdukhovni/postfix synced 2025-08-30 05:38:06 +00:00

postfix-2.3-20050708

This commit is contained in:
Wietse Venema 2005-07-08 00:00:00 -05:00 committed by Viktor Dukhovni
parent 61523e3f67
commit a341721309
3 changed files with 8 additions and 1 deletions

View File

@ -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 <libgen.h>,

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 "20050707"
#define MAIL_RELEASE_DATE "20050708"
#define MAIL_VERSION_NUMBER "2.3"
#define VAR_MAIL_VERSION "mail_version"

View File

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