[openssh-commits] [openssh] 03/03: upstream: wrap line
git+noreply at mindrot.org
git+noreply at mindrot.org
Tue Sep 15 16:59:21 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 6d558485ffdbd671cd340483799082330ce7d858
Author: djm at openbsd.org <djm at openbsd.org>
AuthorDate: Tue Sep 15 06:49:51 2026 +0000
upstream: wrap line
OpenBSD-Commit-ID: 14b59bf44214a9f46d6f0b5281f94420ef0fc888
---
sshd.c | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/sshd.c b/sshd.c
index f264cf7e6..2849eedcc 100644
--- a/sshd.c
+++ b/sshd.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: sshd.c,v 1.629 2026/09/06 18:36:24 deraadt Exp $ */
+/* $OpenBSD: sshd.c,v 1.631 2026/09/15 06:49:51 djm Exp $ */
/*
* Copyright (c) 2000, 2001, 2002 Markus Friedl. All rights reserved.
* Copyright (c) 2002 Niels Provos. All rights reserved.
@@ -1447,7 +1447,8 @@ main(int ac, char **av)
have_connection_info = 1;
break;
case 'u':
- utmp_len = (u_int)strtonum(optarg, 0, HOST_NAME_MAX+1+1, NULL);
+ utmp_len = (u_int)strtonum(optarg, 0,
+ HOST_NAME_MAX+1+1, NULL);
if (utmp_len > HOST_NAME_MAX+1) {
fprintf(stderr, "Invalid utmp length.\n");
exit(1);
--
To stop receiving notification emails like this one, please contact
djm at mindrot.org.
More information about the openssh-commits
mailing list