summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBryan Drewery <bdrewery@FreeBSD.org>2025-10-07 12:18:16 -0700
committerBryan Drewery <bdrewery@FreeBSD.org>2025-10-07 12:19:37 -0700
commit848d7cf44c1e9950aba31231c6f0ef59a6ae32d6 (patch)
tree0a87d07083651c871d185f0f9b7deabf524c4f1e
parent33e58a9f49f752cca72b73765cf9b525710fce5b (diff)
security/openssh-portable: GC missed skip_dsa var.
(cherry picked from commit e2ea6753b2aee566d35bc911ebfac4af4e22e445)
-rw-r--r--security/openssh-portable/Makefile2
-rw-r--r--security/openssh-portable/files/openssh.in2
2 files changed, 2 insertions, 2 deletions
diff --git a/security/openssh-portable/Makefile b/security/openssh-portable/Makefile
index b0188ca89430..a1fca0619c33 100644
--- a/security/openssh-portable/Makefile
+++ b/security/openssh-portable/Makefile
@@ -1,6 +1,6 @@
PORTNAME= openssh
DISTVERSION= 10.0p1
-PORTREVISION= 2
+PORTREVISION= 3
PORTEPOCH= 1
CATEGORIES= security
MASTER_SITES= OPENBSD/OpenSSH/portable
diff --git a/security/openssh-portable/files/openssh.in b/security/openssh-portable/files/openssh.in
index 251cca91fc62..1818d0bf0984 100644
--- a/security/openssh-portable/files/openssh.in
+++ b/security/openssh-portable/files/openssh.in
@@ -41,7 +41,7 @@ pidfile=${openssh_pidfile:="/var/run/sshd.pid"}
openssh_keygen()
{
- local skip_dsa= skip_rsa= skip_ecdsa= skip_ed25519=
+ local skip_rsa= skip_ecdsa= skip_ed25519=
checkyesno openssh_rsa_enable || skip_rsa=y
checkyesno openssh_ecdsa_enable || skip_ecdsa=y
checkyesno openssh_ed25519_enable || skip_ed25519=y