dropbear: bump to version 2013.57
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
parent
f8a82b2859
commit
af2522c07b
32
package/dropbear/dropbear-fix-no-zlib.patch
Normal file
32
package/dropbear/dropbear-fix-no-zlib.patch
Normal file
@ -0,0 +1,32 @@
|
||||
|
||||
# HG changeset patch
|
||||
# User Matt Johnston <matt@ucc.asn.au>
|
||||
# Date 1366121792 -28800
|
||||
# Node ID f110d321fe7abb8864a1ab3268984f7cb02ac285
|
||||
# Parent 029e769c33c697f9255c40d6552f0aa81466eeed
|
||||
Fix build when zlib is disabled, from
|
||||
http://freetz.org/browser/trunk/make/dropbear/patches/350-no_zlib_fix.patch
|
||||
|
||||
diff -r 029e769c33c6 -r f110d321fe7a common-kex.c
|
||||
--- a/common-kex.c Mon Apr 15 22:11:11 2013 +0800
|
||||
+++ b/common-kex.c Tue Apr 16 22:16:32 2013 +0800
|
||||
@@ -171,14 +171,18 @@
|
||||
}
|
||||
if (ses.kexstate.recvnewkeys && ses.newkeys->recv.valid) {
|
||||
TRACE(("switch_keys recv"))
|
||||
+#ifndef DISABLE_ZLIB
|
||||
gen_new_zstream_recv();
|
||||
+#endif
|
||||
ses.keys->recv = ses.newkeys->recv;
|
||||
m_burn(&ses.newkeys->recv, sizeof(ses.newkeys->recv));
|
||||
ses.newkeys->recv.valid = 0;
|
||||
}
|
||||
if (ses.kexstate.sentnewkeys && ses.newkeys->trans.valid) {
|
||||
TRACE(("switch_keys trans"))
|
||||
+#ifndef DISABLE_ZLIB
|
||||
gen_new_zstream_trans();
|
||||
+#endif
|
||||
ses.keys->trans = ses.newkeys->trans;
|
||||
m_burn(&ses.newkeys->trans, sizeof(ses.newkeys->trans));
|
||||
ses.newkeys->trans.valid = 0;
|
||||
|
@ -1,21 +0,0 @@
|
||||
|
||||
# HG changeset patch
|
||||
# User Matt Johnston <matt@ucc.asn.au>
|
||||
# Date 1364743743 -28800
|
||||
# Node ID fedfb8ede1fdebad5d19df7bd4d452c3264d9545
|
||||
# Parent f27058078d61a8c3a057530d3ddcd19bd5062569
|
||||
Fix incorrect logic for USE_VFORK and calling arg_setup()
|
||||
|
||||
diff -r f27058078d61 -r fedfb8ede1fd scp.c
|
||||
--- a/scp.c Sun Mar 31 23:15:35 2013 +0800
|
||||
+++ b/scp.c Sun Mar 31 23:29:03 2013 +0800
|
||||
@@ -230,7 +230,7 @@
|
||||
close(pin[0]);
|
||||
close(pout[1]);
|
||||
|
||||
-#ifdef USE_VFORK
|
||||
+#ifndef USE_VFORK
|
||||
arg_setup(host, remuser, cmd);
|
||||
#endif
|
||||
|
||||
|
@ -4,7 +4,7 @@
|
||||
#
|
||||
#############################################################
|
||||
|
||||
DROPBEAR_VERSION = 2013.56
|
||||
DROPBEAR_VERSION = 2013.57
|
||||
DROPBEAR_SITE = http://matt.ucc.asn.au/dropbear/releases
|
||||
DROPBEAR_SOURCE = dropbear-$(DROPBEAR_VERSION).tar.bz2
|
||||
DROPBEAR_TARGET_BINS = dbclient dropbearkey dropbearconvert scp ssh
|
||||
|
Loading…
Reference in New Issue
Block a user