diff options
author | William Cohen <wcohen@redhat.com> | 2008-12-12 09:44:32 -0500 |
---|---|---|
committer | William Cohen <wcohen@redhat.com> | 2008-12-12 09:44:32 -0500 |
commit | 131f843df14c779d99094921a076adbea6e65c32 (patch) | |
tree | bec6d169f54b2449e34c108b61371ec1a36ef619 /stap-client | |
parent | 1d2280102dad0e24ee51f865e142ef92b2b952a2 (diff) | |
parent | 0b7f181e1096f8833e24a60a7c0f97ecc063b9f4 (diff) | |
download | systemtap-steved-131f843df14c779d99094921a076adbea6e65c32.tar.gz systemtap-steved-131f843df14c779d99094921a076adbea6e65c32.tar.xz systemtap-steved-131f843df14c779d99094921a076adbea6e65c32.zip |
Merge branch 'master' of ssh://sources.redhat.com/git/systemtap
Diffstat (limited to 'stap-client')
-rwxr-xr-x | stap-client | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stap-client b/stap-client index 255551b3..3f530c7e 100755 --- a/stap-client +++ b/stap-client @@ -410,7 +410,7 @@ function receive_response { # Retrieve the file. Wait for up to 5 minutes for a response. for ((attempt=0; $attempt < 300; ++attempt)) do - if $netcat -d $server $(($port+1)) > $tar_server 2>/dev/null; then + if $netcat $server $(($port+1)) </dev/null > $tar_server 2>/dev/null; then return; fi sleep 1 |