diff options
author | Michael Mair-Keimberger (asterix) <m.mairkeimberger@gmail.com> | 2017-01-07 18:25:04 +0100 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2017-01-29 21:08:28 +0100 |
commit | e9da39f4b81b2aebbd69685dad13233006cb4f98 (patch) | |
tree | e34eb046c447fa3678f78b54714cd79cb645d382 /net-misc/sshpass | |
parent | net-ftp/vsftpd: remove unused patch (diff) | |
download | gentoo-e9da39f4b81b2aebbd69685dad13233006cb4f98.tar.gz gentoo-e9da39f4b81b2aebbd69685dad13233006cb4f98.tar.bz2 gentoo-e9da39f4b81b2aebbd69685dad13233006cb4f98.zip |
net-misc/sshpass: remove unused patch
Closes: https://github.com/gentoo/gentoo/pull/3369
Diffstat (limited to 'net-misc/sshpass')
-rw-r--r-- | net-misc/sshpass/files/sshpass-1.04-ssh5.6.patch | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/net-misc/sshpass/files/sshpass-1.04-ssh5.6.patch b/net-misc/sshpass/files/sshpass-1.04-ssh5.6.patch deleted file mode 100644 index 2d02c4ef4bf3..000000000000 --- a/net-misc/sshpass/files/sshpass-1.04-ssh5.6.patch +++ /dev/null @@ -1,16 +0,0 @@ ---- main.c.orig 2011-02-01 10:00:45.571260395 +0000 -+++ main.c 2011-02-01 11:14:48.571421997 +0000 -@@ -311,6 +311,11 @@ - - int numread=read(fd, buffer, sizeof(buffer) ); - -+ // New versions of ssh probably set the terminal to non-blocking, so we get lots of unused or empty responses. -+ if( numread<0 && errno ==5 ) { -+ return 0; -+ } -+ - if( numread<0 ) { - // Comment no. 3.1416 - // Select is doing a horrid job of waking us up at the right time - it wakes up with "read ready" when the slave - - |