summaryrefslogtreecommitdiff
path: root/security/dropbear/patches
diff options
context:
space:
mode:
authordrochner <drochner@pkgsrc.org>2005-04-29 16:14:41 +0000
committerdrochner <drochner@pkgsrc.org>2005-04-29 16:14:41 +0000
commitd4ec42c6fe0ccfe0ab7c3cb971a8ed7490a5f4b3 (patch)
tree708e4bcb5e7dc2338219fcf88fff0a62b144549b /security/dropbear/patches
parentfa46fe612f299ebbd7eda289d5a07086d35fd83b (diff)
downloadpkgsrc-d4ec42c6fe0ccfe0ab7c3cb971a8ed7490a5f4b3.tar.gz
update to 0.45
changes: - Makefile no longer appends 'static' to statically linked binaries - Add optional SSH_ASKPASS support to the client - Respect HOST_LOOKUP option - Fix accidentally removed "return;" statement which was removed in 0.44 (causing clients which sent an empty terminal-modes string to fail to connect - including pssh, ssh.com, danger hiptop). (patches independently from Paul Fox, David Horwitt and Sven-Ola Tuecke) - Read "y/n" response for fingerprints from /dev/tty directly so that dbclient will work with scp.
Diffstat (limited to 'security/dropbear/patches')
-rw-r--r--security/dropbear/patches/patch-aa26
-rw-r--r--security/dropbear/patches/patch-ab10
2 files changed, 18 insertions, 18 deletions
diff --git a/security/dropbear/patches/patch-aa b/security/dropbear/patches/patch-aa
index bb0f07bc790..cd13b53636c 100644
--- a/security/dropbear/patches/patch-aa
+++ b/security/dropbear/patches/patch-aa
@@ -1,23 +1,23 @@
-$NetBSD: patch-aa,v 1.5 2005/01/18 17:30:59 drochner Exp $
+$NetBSD: patch-aa,v 1.6 2005/04/29 16:14:41 drochner Exp $
---- Makefile.in.orig 2005-01-03 10:24:03.000000000 +0100
+--- Makefile.in.orig 2005-03-07 05:27:01.000000000 +0100
+++ Makefile.in
-@@ -140,14 +140,14 @@ insmulti%: dropbearmulti
+@@ -137,14 +137,14 @@ insmulti%: dropbearmulti
inst_dropbear: dropbear
$(INSTALL) -d -m 755 $(DESTDIR)$(sbindir)
- $(INSTALL) -m 755 $(SPREFIX)dropbear$(EXEEXT) $(DESTDIR)$(sbindir)
-- -chown root $(DESTDIR)$(sbindir)/$(SPREFIX)dropbear$(EXEEXT)
-- -chgrp 0 $(DESTDIR)$(sbindir)/$(SPREFIX)dropbear$(EXEEXT)
-+ -chown ${ROOT_USER} $(DESTDIR)$(sbindir)/$(SPREFIX)dropbear$(EXEEXT)
-+ -chgrp ${ROOT_GROUP} $(DESTDIR)$(sbindir)/$(SPREFIX)dropbear$(EXEEXT)
+ $(INSTALL) -m 755 dropbear$(EXEEXT) $(DESTDIR)$(sbindir)
+- -chown root $(DESTDIR)$(sbindir)/dropbear$(EXEEXT)
+- -chgrp 0 $(DESTDIR)$(sbindir)/dropbear$(EXEEXT)
++ -chown ${ROOT_USER} $(DESTDIR)$(sbindir)/dropbear$(EXEEXT)
++ -chgrp ${ROOT_GROUP} $(DESTDIR)$(sbindir)/dropbear$(EXEEXT)
inst_%: $*
$(INSTALL) -d -m 755 $(DESTDIR)$(bindir)
- $(INSTALL) -m 755 $(SPREFIX)$*$(EXEEXT) $(DESTDIR)$(bindir)
-- -chown root $(DESTDIR)$(bindir)/$(SPREFIX)$*$(EXEEXT)
-- -chgrp 0 $(DESTDIR)$(bindir)/$(SPREFIX)$*$(EXEEXT)
-+ -chown ${ROOT_USER} $(DESTDIR)$(bindir)/$(SPREFIX)$*$(EXEEXT)
-+ -chgrp ${ROOT_GROUP} $(DESTDIR)$(bindir)/$(SPREFIX)$*$(EXEEXT)
+ $(INSTALL) -m 755 $*$(EXEEXT) $(DESTDIR)$(bindir)
+- -chown root $(DESTDIR)$(bindir)/$*$(EXEEXT)
+- -chgrp 0 $(DESTDIR)$(bindir)/$*$(EXEEXT)
++ -chown ${ROOT_USER} $(DESTDIR)$(bindir)/$*$(EXEEXT)
++ -chgrp ${ROOT_GROUP} $(DESTDIR)$(bindir)/$*$(EXEEXT)
# for some reason the rule further down doesn't like $($@objs) as a prereq.
diff --git a/security/dropbear/patches/patch-ab b/security/dropbear/patches/patch-ab
index f6d51af3bf2..ebb042de223 100644
--- a/security/dropbear/patches/patch-ab
+++ b/security/dropbear/patches/patch-ab
@@ -1,11 +1,11 @@
-$NetBSD: patch-ab,v 1.1 2005/01/18 17:30:59 drochner Exp $
+$NetBSD: patch-ab,v 1.2 2005/04/29 16:14:41 drochner Exp $
---- options.h.orig 2005-01-18 15:42:25.000000000 +0100
+--- options.h.orig 2005-03-07 05:27:02.000000000 +0100
+++ options.h
-@@ -139,7 +139,7 @@ etc) slower (perhaps by 50%). Recommende
- * will prevent Dropbear from blocking on the device. This could
+@@ -143,7 +143,7 @@ etc) slower (perhaps by 50%). Recommende
* however significantly reduce the security of your ssh connections
- * if the PRNG state becomes simpler. */
+ * if the PRNG state becomes guessable - make sure you know what you are
+ * doing if you change this. */
-#define DROPBEAR_RANDOM_DEV "/dev/random"
+#define DROPBEAR_RANDOM_DEV "/dev/urandom"