prepare 1.26 bugfix release

This commit is contained in:
Axel Kittenberger 2009-01-05 13:45:12 +00:00
parent 9767279d65
commit 8271e80ae6
4 changed files with 7 additions and 4 deletions

View File

@ -1,3 +1,6 @@
05-01-2009: Release of lsyncd 1.26
fix: segfault on multitargets
14-12-2008: Release of lsyncd 1.25
fix: mv dir and cp -r working
fix: working with reiserfs

View File

@ -1,6 +1,6 @@
AC_INIT(lsyncd.c)
m4_define(LSYNCD_PACKAGE,lsyncd)
m4_define(LSYNCD_VERSION,1.25)
m4_define(LSYNCD_VERSION,1.26)
AM_INIT_AUTOMAKE(LSYNCD_PACKAGE,LSYNCD_VERSION)
AC_ARG_ENABLE([xml_config],

View File

@ -1481,8 +1481,8 @@ bool parse_config(bool fullparse) {
fprintf(stderr, "error in config file: version specifier missing in \"%s\",\n", conf_filename);
exit(LSYNCD_BADCONFIGFILE);
}
if (xmlStrcmp(xc, BAD_CAST "1.25")) {
fprintf(stderr, "error in config file: expected a \"1.25\" versioned file, found \"%s\"\n", xc);
if (xmlStrcmp(xc, BAD_CAST "1") && xmlStrcmp(xc, BAD_CAST "1.25")) { //1.25, backward stuff
fprintf(stderr, "error in config file: expected a \"1\" versioned file, found \"%s\"\n", xc);
exit(LSYNCD_BADCONFIGFILE);
}

View File

@ -1,4 +1,4 @@
<lsyncd version="1.25">
<lsyncd version="1">
<!--
This is a default config file template for lsyncd.