[openssh-commits] [openssh] 01/01: Make USL compilers happy UX:acomp: ERROR: "sftp-server.c", line 567: void function cannot return value

git+noreply at mindrot.org git+noreply at mindrot.org
Tue Jan 11 06:10:52 AEDT 2022


This is an automated email from the git hooks/post-receive script.

tim pushed a commit to branch master
in repository openssh.

commit 61761340be5e11046556623f8f5412b236cefa95
Author: Tim Rice <tim at multitalents.net>
Date:   Mon Jan 10 11:07:04 2022 -0800

    Make USL compilers happy
    UX:acomp: ERROR: "sftp-server.c", line 567: void function cannot return value
---
 sftp-server.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sftp-server.c b/sftp-server.c
index a3d1dc2d..f5ea2dc8 100644
--- a/sftp-server.c
+++ b/sftp-server.c
@@ -564,7 +564,7 @@ send_status_errmsg(u_int32_t id, u_int32_t status, const char *errmsg)
 static void
 send_status(u_int32_t id, u_int32_t status)
 {
-	return send_status_errmsg(id, status, NULL);
+	send_status_errmsg(id, status, NULL);
 }
 
 static void

-- 
To stop receiving notification emails like this one, please contact
djm at mindrot.org.


More information about the openssh-commits mailing list