commit-inetutils
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[SCM] GNU Inetutils branch, master, updated. inetutils-1_9_4-92-g424fb8


From: Tim Ruehsen
Subject: [SCM] GNU Inetutils branch, master, updated. inetutils-1_9_4-92-g424fb86
Date: Sat, 29 Feb 2020 13:05:23 -0500 (EST)

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 <address@hidden>
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 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]