diff mbox

openssh: security bump to version 6.6p1

Message ID 1395661670-26641-1-git-send-email-gustavo@zacarias.com.ar
State Accepted
Commit 53587a3192aeaa72cf43f703ccfebdfd77998e1f
Headers show

Commit Message

Gustavo Zacarias March 24, 2014, 11:47 a.m. UTC
Fixes CVE-2014-2532.
SUSv3 deprecation already handled upstream.

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 package/openssh/openssh.mk | 12 +-----------
 1 file changed, 1 insertion(+), 11 deletions(-)

Comments

Peter Korsgaard March 24, 2014, 2:26 p.m. UTC | #1
>>>>> "Gustavo" == Gustavo Zacarias <gustavo@zacarias.com.ar> writes:

 > Fixes CVE-2014-2532.
 > SUSv3 deprecation already handled upstream.

 > Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>

Committed, thanks.
diff mbox

Patch

diff --git a/package/openssh/openssh.mk b/package/openssh/openssh.mk
index f5f334e..e35ea10 100644
--- a/package/openssh/openssh.mk
+++ b/package/openssh/openssh.mk
@@ -4,7 +4,7 @@ 
 #
 ################################################################################
 
-OPENSSH_VERSION = 6.5p1
+OPENSSH_VERSION = 6.6p1
 OPENSSH_SITE = http://ftp.openbsd.org/pub/OpenBSD/OpenSSH/portable
 OPENSSH_CONF_ENV = LD="$(TARGET_CC)" LDFLAGS="$(TARGET_CFLAGS)"
 OPENSSH_CONF_OPT = --disable-lastlog --disable-utmp \
@@ -30,14 +30,4 @@  define OPENSSH_INSTALL_INIT_SYSV
 		$(TARGET_DIR)/etc/init.d/S50sshd
 endef
 
-# Replace deprecated bcopy/bzero with memset/memcpy
-define OPENSSH_REPLACE_SUSV3_DEPRECATED
-	for src in `find $(@D) -name \*.c`; do \
-		$(SED) "s/bzero(\(.*,\)/memset(\1 0, /" $${src} ;\
-		$(SED) "s/bcopy(\(.*,\) \(.*,\)/memcpy(\2 \1/" $${src} ;\
-	done
-endef
-
-OPENSSH_POST_PATCH_HOOKS += OPENSSH_REPLACE_SUSV3_DEPRECATED
-
 $(eval $(autotools-package))