mirror of
https://github.com/octoleo/lsyncd.git
synced 2025-01-09 01:44:16 +00:00
prepare 1.26 bugfix release
This commit is contained in:
parent
9767279d65
commit
8271e80ae6
@ -1,3 +1,6 @@
|
|||||||
|
05-01-2009: Release of lsyncd 1.26
|
||||||
|
fix: segfault on multitargets
|
||||||
|
|
||||||
14-12-2008: Release of lsyncd 1.25
|
14-12-2008: Release of lsyncd 1.25
|
||||||
fix: mv dir and cp -r working
|
fix: mv dir and cp -r working
|
||||||
fix: working with reiserfs
|
fix: working with reiserfs
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
AC_INIT(lsyncd.c)
|
AC_INIT(lsyncd.c)
|
||||||
m4_define(LSYNCD_PACKAGE,lsyncd)
|
m4_define(LSYNCD_PACKAGE,lsyncd)
|
||||||
m4_define(LSYNCD_VERSION,1.25)
|
m4_define(LSYNCD_VERSION,1.26)
|
||||||
AM_INIT_AUTOMAKE(LSYNCD_PACKAGE,LSYNCD_VERSION)
|
AM_INIT_AUTOMAKE(LSYNCD_PACKAGE,LSYNCD_VERSION)
|
||||||
|
|
||||||
AC_ARG_ENABLE([xml_config],
|
AC_ARG_ENABLE([xml_config],
|
||||||
|
4
lsyncd.c
4
lsyncd.c
@ -1481,8 +1481,8 @@ bool parse_config(bool fullparse) {
|
|||||||
fprintf(stderr, "error in config file: version specifier missing in \"%s\",\n", conf_filename);
|
fprintf(stderr, "error in config file: version specifier missing in \"%s\",\n", conf_filename);
|
||||||
exit(LSYNCD_BADCONFIGFILE);
|
exit(LSYNCD_BADCONFIGFILE);
|
||||||
}
|
}
|
||||||
if (xmlStrcmp(xc, BAD_CAST "1.25")) {
|
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.25\" versioned file, found \"%s\"\n", xc);
|
fprintf(stderr, "error in config file: expected a \"1\" versioned file, found \"%s\"\n", xc);
|
||||||
exit(LSYNCD_BADCONFIGFILE);
|
exit(LSYNCD_BADCONFIGFILE);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
<lsyncd version="1.25">
|
<lsyncd version="1">
|
||||||
|
|
||||||
<!--
|
<!--
|
||||||
This is a default config file template for lsyncd.
|
This is a default config file template for lsyncd.
|
||||||
|
Loading…
Reference in New Issue
Block a user