[openssh-commits] [openssh] 01/04: upstream: Add missing semicolon after return. CID 913599, ok
git+noreply at mindrot.org
git+noreply at mindrot.org
Wed Sep 16 15:04:50 AEST 2026
This is an automated email from the git hooks/post-receive script.
djm pushed a commit to branch master
in repository openssh.
commit e158e008a851c8679ddceab5450338883cf258dc
Author: dtucker at openbsd.org <dtucker at openbsd.org>
AuthorDate: Wed Sep 16 04:12:42 2026 +0000
upstream: Add missing semicolon after return. CID 913599, ok
deraadt@
OpenBSD-Commit-ID: d44361633f2791eeeb4bd160bebedf3ad07a9c05
---
channels.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/channels.c b/channels.c
index c854db649..b672e2e75 100644
--- a/channels.c
+++ b/channels.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: channels.c,v 1.467 2026/09/16 00:13:58 djm Exp $ */
+/* $OpenBSD: channels.c,v 1.468 2026/09/16 04:12:42 dtucker Exp $ */
/*
* Author: Tatu Ylonen <ylo at cs.hut.fi>
* Copyright (c) 1995 Tatu Ylonen <ylo at cs.hut.fi>, Espoo, Finland
@@ -327,7 +327,7 @@ static void
channel_free_connect_ctx(Channel *c)
{
if (c == NULL || c->connect_ctx)
- return
+ return;
free_connect_ctx(c->connect_ctx);
free(c->connect_ctx);
c->connect_ctx = NULL;
--
To stop receiving notification emails like this one, please contact
djm at mindrot.org.
More information about the openssh-commits
mailing list