This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU Inetutils ".

The branch, master has been updated
       via  424fb865988b81a5a864228982de78c2ef426206 (commit)
      from  0c63e144a55e5d81695bc5b881696d9210e9df42 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://git.savannah.gnu.org/cgit/inetutils.git/commit/?id=424fb865988b81a5a864228982de78c2ef426206


commit 424fb865988b81a5a864228982de78c2ef426206
Author: Tim Rühsen <[email protected]>
Date:   Sat Feb 29 19:05:18 2020 +0100

    ftp/cmds.c: Fix return value of remglob

diff --git a/ftp/cmds.c b/ftp/cmds.c
index 9e734a7..0045963 100644
--- a/ftp/cmds.c
+++ b/ftp/cmds.c
@@ -1035,7 +1035,7 @@ remglob (char **argv, int doswitch)
        args = argv;
       if ((cp = *++args) == NULL)
        args = NULL;
-      return cp ? 0 : strdup (cp);
+      return cp ? strdup (cp) : NULL;
     }
   if (ftemp == NULL)
     {

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

Summary of changes:
 ftp/cmds.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


hooks/post-receive
-- 
GNU Inetutils 

_______________________________________________
Commit-inetutils mailing list
[email protected]
https://lists.gnu.org/mailman/listinfo/commit-inetutils

Reply via email to