From: Wayne Davison Date: Sat, 20 Aug 2022 15:28:48 +0000 (-0700) Subject: Mention the latest changes. X-Git-Tag: v3.2.6~13 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=706bff9176ccf6976e27040eb5729ce34c0058eb;p=thirdparty%2Frsync.git Mention the latest changes. --- diff --git a/NEWS.md b/NEWS.md index 2196c33c..b5883ecf 100644 --- a/NEWS.md +++ b/NEWS.md @@ -7,6 +7,9 @@ - More path-cleaning in the file-list verification code to handle some rejected args. +- Fixed a bug with the new file-list validation code when the last line of the + [`--files-from`](rsync.1#opt) list is not terminated by a newline. + - Fixed a bug in the internal MD4 checksum code that could cause the digest to be sporadically incorrect (the openssl version was/is fine). @@ -17,6 +20,17 @@ version value. This should avoid using an unrelated git description for rsync's version. +### DEVELOPER RELATED: + +- The configure script no longer sets the -pedantic-errors CFLAG (which it + used to try to do only for gcc). + +- A minor tweak to rrsync added "copy-devices" to the list of known args, but + left it disabled by default. + +- The name_num_obj struct was modified to allow its dynamic name_num_item list + to be initialized in a better way. + ------------------------------------------------------------------------------ # NEWS for rsync 3.2.5 (14 Aug 2022) diff --git a/packaging/cull-options b/packaging/cull-options index 955c21f1..e71818cd 100755 --- a/packaging/cull-options +++ b/packaging/cull-options @@ -27,6 +27,7 @@ long_opts = { # These include some extra long-args that BackupPC uses: 'recursive': 0, 'stderr': 1, 'times': 0, + 'copy-devices': -1, 'write-devices': -1, }