Francois Gouget : testbot/TestAgent: 'nc -q0' seems to be the default but make it explicit just in case.

Alexandre Julliard julliard at winehq.org
Mon Feb 25 14:02:21 CST 2013


Module: tools
Branch: master
Commit: 3fff4c25a586c150969ea181519228e5855dec07
URL:    http://source.winehq.org/git/tools.git/?a=commit;h=3fff4c25a586c150969ea181519228e5855dec07

Author: Francois Gouget <fgouget at codeweavers.com>
Date:   Mon Feb 25 17:32:11 2013 +0100

testbot/TestAgent: 'nc -q0' seems to be the default but make it explicit just in case.

---

 testbot/lib/WineTestBot/TestAgent.pm |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/testbot/lib/WineTestBot/TestAgent.pm b/testbot/lib/WineTestBot/TestAgent.pm
index 7852e41..4fe1b25 100644
--- a/testbot/lib/WineTestBot/TestAgent.pm
+++ b/testbot/lib/WineTestBot/TestAgent.pm
@@ -851,7 +851,7 @@ sub _Connect($)
 
     # Use netcat to forward the connection from the SSH server to the TestAgent
     # server. Note that we won't know about netcat errors at this point.
-    if (!$self->{fd}->exec("nc '$self->{agenthost}' '$self->{agentport}'"))
+    if (!$self->{fd}->exec("nc -q0 '$self->{agenthost}' '$self->{agentport}'"))
     {
       $self->_SetError($FATAL, "Unable to start netcat: " . $self->_ssherror());
       return undef;




More information about the wine-cvs mailing list