[openssh-commits] [openssh] branch master updated: upstream: void functions should not return anything. Patch from Tim

git+noreply at mindrot.org git+noreply at mindrot.org
Sun Jul 5 22:51:47 AEST 2026


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

djm pushed a commit to branch master
in repository openssh.

The following commit(s) were added to refs/heads/master by this push:
     new cf67d46cb upstream: void functions should not return anything. Patch from Tim
cf67d46cb is described below

commit cf67d46cba77d493152830a108b5f294ee9c5140
Author: dtucker at openbsd.org <dtucker at openbsd.org>
AuthorDate: Sun Jul 5 02:46:44 2026 +0000

    upstream: void functions should not return anything. Patch from Tim
    
    Rice.
    
    OpenBSD-Commit-ID: bb5021b2b45d9d3f54a012d569872805d107f59c
---
 ssh-agent.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/ssh-agent.c b/ssh-agent.c
index a8bbf8d73..5fc73d697 100644
--- a/ssh-agent.c
+++ b/ssh-agent.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ssh-agent.c,v 1.329 2026/06/13 00:37:13 djm Exp $ */
+/* $OpenBSD: ssh-agent.c,v 1.330 2026/07/05 02:46:44 dtucker Exp $ */
 /*
  * Author: Tatu Ylonen <ylo at cs.hut.fi>
  * Copyright (c) 1995 Tatu Ylonen <ylo at cs.hut.fi>, Espoo, Finland
@@ -613,7 +613,7 @@ send_status_generic(SocketEntry *e, u_int code)
 static void
 send_status(SocketEntry *e, int success)
 {
-	return send_status_generic(e,
+	send_status_generic(e,
 	    success ? SSH_AGENT_SUCCESS : SSH_AGENT_FAILURE);
 }
 

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


More information about the openssh-commits mailing list