[openssh-commits] [openssh] 01/03: upstream: fix previous
git+noreply at mindrot.org
git+noreply at mindrot.org
Tue Sep 2 11:07:43 AEST 2025
This is an automated email from the git hooks/post-receive script.
djm pushed a commit to branch master
in repository openssh.
commit 9313233a735733821dfd170b70782fb7da492962
Author: djm at openbsd.org <djm at openbsd.org>
AuthorDate: Tue Sep 2 01:03:43 2025 +0000
upstream: fix previous
OpenBSD-Commit-ID: 09d95dfb5e064a1d0e74afba8d77474cc1d110a4
---
servconf.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/servconf.c b/servconf.c
index 2c51637fd..415868b32 100644
--- a/servconf.c
+++ b/servconf.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: servconf.c,v 1.432 2025/09/01 23:53:16 djm Exp $ */
+/* $OpenBSD: servconf.c,v 1.433 2025/09/02 01:03:43 djm Exp $ */
/*
* Copyright (c) 1995 Tatu Ylonen <ylo at cs.hut.fi>, Espoo, Finland
* All rights reserved
@@ -2016,7 +2016,7 @@ process_server_config_line_depth(ServerOptions *options, char *line,
fatal("%s line %d: Invalid %s spec.",
filename, linenum, keyword);
}
- if (value3 <= 0 || value <= 0)
+ if (value3 <= 0 || (value2 != -1 && value <= 0))
fatal("%s line %d: Invalid %s spec.",
filename, linenum, keyword);
if (*activep && options->max_startups == -1) {
--
To stop receiving notification emails like this one, please contact
djm at mindrot.org.
More information about the openssh-commits
mailing list