diff options
author | Ned Ludd <solar@gentoo.org> | 2005-07-17 11:19:00 +0000 |
---|---|---|
committer | Ned Ludd <solar@gentoo.org> | 2005-07-17 11:19:00 +0000 |
commit | 04e90514f96f6ac2c9d10f992dc590fa48cc4e2c (patch) | |
tree | 03e7145e252647f545b1ba3f0019f0fe9291ebed /net-misc/dropbear/files | |
parent | Version bump. (diff) | |
download | historical-04e90514f96f6ac2c9d10f992dc590fa48cc4e2c.tar.gz historical-04e90514f96f6ac2c9d10f992dc590fa48cc4e2c.tar.bz2 historical-04e90514f96f6ac2c9d10f992dc590fa48cc4e2c.zip |
- version bump. fixed dbscp so that it actually works when using +multicall
Package-Manager: portage-2.0.51.22-r1
Diffstat (limited to 'net-misc/dropbear/files')
-rw-r--r-- | net-misc/dropbear/files/digest-dropbear-0.46 | 1 | ||||
-rw-r--r-- | net-misc/dropbear/files/dropbear-0.46-dbscp.patch | 20 |
2 files changed, 21 insertions, 0 deletions
diff --git a/net-misc/dropbear/files/digest-dropbear-0.46 b/net-misc/dropbear/files/digest-dropbear-0.46 new file mode 100644 index 000000000000..64c85f11f411 --- /dev/null +++ b/net-misc/dropbear/files/digest-dropbear-0.46 @@ -0,0 +1 @@ +MD5 f0e535a62b57e5bde9ecba4a11402178 dropbear-0.46.tar.bz2 1413918 diff --git a/net-misc/dropbear/files/dropbear-0.46-dbscp.patch b/net-misc/dropbear/files/dropbear-0.46-dbscp.patch new file mode 100644 index 000000000000..18873f24c5a6 --- /dev/null +++ b/net-misc/dropbear/files/dropbear-0.46-dbscp.patch @@ -0,0 +1,20 @@ +--- dbmulti.c 2005-07-17 07:00:07.000000000 -0400 ++++ dbmulti.c 2005-07-17 06:59:35.000000000 -0400 +@@ -60,7 +60,7 @@ + } + #endif + #ifdef DBMULTI_scp +- if (strcmp(progname, "scp") == 0) { ++ if ((strcmp(progname, "scp") == 0) || (strcmp(progname, "dbscp") == 0)) { + return scp_main(argc, argv); + } + #endif +@@ -81,7 +81,7 @@ + "'dropbearconvert' - the key converter\n" + #endif + #ifdef DBMULTI_scp +- "'scp' - secure copy\n" ++ "'dbscp' - secure copy\n" + #endif + , + DROPBEAR_VERSION); |