[openssh-commits] [openssh] branch master updated: upstream: fix PerSourcePenalty incorrectly using "crash" penalty when
git+noreply at mindrot.org
git+noreply at mindrot.org
Mon Mar 3 09:45:16 AEDT 2025
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 b6bba67e upstream: fix PerSourcePenalty incorrectly using "crash" penalty when
b6bba67e is described below
commit b6bba67e6c31d268480773e4fed16d0a32b4218e
Author: djm at openbsd.org <djm at openbsd.org>
AuthorDate: Sun Mar 2 22:44:00 2025 +0000
upstream: fix PerSourcePenalty incorrectly using "crash" penalty when
LoginGraceTime was exceeded. Reported by irwin AT princeton.edu via bz3797
OpenBSD-Commit-ID: 1ba3e490a5a9451359618c550d995380af454d25
---
srclimit.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/srclimit.c b/srclimit.c
index 33116fa5..c63a462e 100644
--- a/srclimit.c
+++ b/srclimit.c
@@ -386,7 +386,7 @@ srclimit_penalise(struct xaddr *addr, int penalty_type)
reason = "penalty: connection prohibited by RefuseConnection";
break;
case SRCLIMIT_PENALTY_GRACE_EXCEEDED:
- penalty_secs = penalty_cfg.penalty_crash;
+ penalty_secs = penalty_cfg.penalty_grace;
reason = "penalty: exceeded LoginGraceTime";
break;
default:
--
To stop receiving notification emails like this one, please contact
djm at mindrot.org.
More information about the openssh-commits
mailing list