[SCM] The rsync repository. - branch master updated

Rsync CVS commit messages rsync-cvs at lists.samba.org
Mon Jun 22 19:55:01 UTC 2020


The branch, master has been updated
       via  8f6d6bcb Tweak valid_ipaddr() check.
       via  300fd305 Even more NEWS changes.
      from  f6df3708 A few more NEWS changes; change release script.

https://git.samba.org/?p=rsync.git;a=shortlog;h=master


- Log -----------------------------------------------------------------
commit 8f6d6bcb086285ba3e791f4db8c4f3946b797db8
Author: Wayne Davison <wayne at opencoder.net>
Date:   Mon Jun 22 11:17:56 2020 -0700

    Tweak valid_ipaddr() check.

commit 300fd3055a35163fc4c7d4015bda28bfea909065
Author: Wayne Davison <wayne at opencoder.net>
Date:   Mon Jun 22 09:57:29 2020 -0700

    Even more NEWS changes.

-----------------------------------------------------------------------

Summary of changes:
 NEWS.md      | 7 ++++---
 clientname.c | 2 +-
 2 files changed, 5 insertions(+), 4 deletions(-)


Changeset truncated at 500 lines:

diff --git a/NEWS.md b/NEWS.md
index 4cfffb57..5b8946aa 100644
--- a/NEWS.md
+++ b/NEWS.md
@@ -21,7 +21,7 @@ Protocol: 31 (unchanged)
    `-O2`.  Note that clang++ is quite buggy in this area, and it does still
    crash for some folks, so just use `--disable-simd` if you need to avoid
    their buggy compiler (since the configure test is apparently not finding
-   all the compilers that plan to crash and burn).
+   all the compilers that will to crash and burn).
 
  - Fix an issue in the md2man script when building from an external dir.
 
@@ -37,7 +37,7 @@ Protocol: 31 (unchanged)
  - Mention either "default protect-args" or "optional protect-args" in the
    `--version` capabilities depending on how rsync was configured.
 
- - Some info on optimizations was elided from the `--version` capabilities
+ - Some info on optimizations is now elided from the `--version` capabilities
    since they aren't really user-facing capabilities.  You can still see the
    info (plus the status of a couple extra optimizations) by repeating the
    `--version` option (e.g. `-VV`).
@@ -79,7 +79,8 @@ Protocol: 31 (unchanged)
 
  - Make the atomic-rsync helper script have a more consistent error-exit.
 
- - Make sure that a signal handler calls `_exit()` instead of exit().
+ - Make sure that a signal handler's use of exit_cleanup() calls `_exit()`
+   instead of exit().
 
  - Various zlib fixes, including security fixes for CVE-2016-9843,
    CVE-2016-9842, CVE-2016-9841, and CVE-2016-9840.
diff --git a/clientname.c b/clientname.c
index 1e85c84e..ef5e4d24 100644
--- a/clientname.c
+++ b/clientname.c
@@ -481,7 +481,7 @@ static int valid_ipaddr(const char *s)
 
 		for (count = 0; count < 8; count++) {
 			if (!*s)
-				return saw_double_colon && count < 7;
+				return saw_double_colon;
 
 			if (strchr(s, ':') == NULL && strchr(s, '.') != NULL) {
 				if ((!saw_double_colon && count != 6) || (saw_double_colon && count > 6))


-- 
The rsync repository.



More information about the rsync-cvs mailing list