diff options
author | sunpoet <sunpoet@FreeBSD.org> | 2012-06-25 01:51:21 +0800 |
---|---|---|
committer | sunpoet <sunpoet@FreeBSD.org> | 2012-06-25 01:51:21 +0800 |
commit | 380fbb756f94cccd48db5c13f41e095a5cdf038c (patch) | |
tree | 68e47ddc1d1b12caadf9d9c55d60de189f4765ac /security | |
parent | 2d69c846f59e6ef0e27c0302d15b592209aa5f81 (diff) | |
download | freebsd-ports-gnome-380fbb756f94cccd48db5c13f41e095a5cdf038c.tar.gz freebsd-ports-gnome-380fbb756f94cccd48db5c13f41e095a5cdf038c.tar.zst freebsd-ports-gnome-380fbb756f94cccd48db5c13f41e095a5cdf038c.zip |
- Fix ECDSA key generation in openssh rc.d script
- Bump PORTREVISION for package change
Submitted by: J. Hellenthal <jhellenthal@dataix.net>
Diffstat (limited to 'security')
-rw-r--r-- | security/openssh-portable/Makefile | 2 | ||||
-rw-r--r-- | security/openssh-portable/files/openssh.in | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/security/openssh-portable/Makefile b/security/openssh-portable/Makefile index 7f25cf49f238..8fc1231401e7 100644 --- a/security/openssh-portable/Makefile +++ b/security/openssh-portable/Makefile @@ -7,7 +7,7 @@ PORTNAME= openssh DISTVERSION= 5.8p2 -PORTREVISION= 2 +PORTREVISION= 3 PORTEPOCH= 1 CATEGORIES= security ipv6 MASTER_SITES= ${MASTER_SITE_OPENBSD} diff --git a/security/openssh-portable/files/openssh.in b/security/openssh-portable/files/openssh.in index 1eb8a951a3e9..0c3839dbeb20 100644 --- a/security/openssh-portable/files/openssh.in +++ b/security/openssh-portable/files/openssh.in @@ -79,7 +79,7 @@ openssh_keygen() "in %%ETCSSH%%/ssh_host_ecdsa_key" echo "Skipping protocol version 2 Elliptic Curve DSA Key Generation" else - %%PREFIX%%/bin/ssh-keygen -t dsa \ + %%PREFIX%%/bin/ssh-keygen -t ecdsa \ -f %%ETCSSH%%/ssh_host_ecdsa_key -N '' fi fi |