diff options
Diffstat (limited to 'tests/libtest')
-rw-r--r-- | tests/libtest/lib556.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/tests/libtest/lib556.c b/tests/libtest/lib556.c index da29a4678..67da87f40 100644 --- a/tests/libtest/lib556.c +++ b/tests/libtest/lib556.c @@ -84,9 +84,11 @@ int test(char *URL) sleep(1); /* avoid ctl-10 dump */ #endif - if(iolen) + if(iolen) { /* send received stuff to stdout */ - write(STDOUT_FILENO, buf, iolen); + if(!write(STDOUT_FILENO, buf, iolen)) + break; + } total += iolen; } while(((res == CURLE_OK) || (res == CURLE_AGAIN)) && (total < 129)); |