diff options
author | Daniel Stenberg <daniel@haxx.se> | 2020-03-02 07:42:54 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2020-03-02 07:42:54 +0100 |
commit | d7242f4757de67f02b13fac850c3472598f999ca (patch) | |
tree | 15f489c293337a304101cd2f35e1f51b84abab69 /tests/libtest/lib654.c | |
parent | e002f6c0cbec7f87fd7ed478cc463bbb9a33b085 (diff) |
Revert "mime: do not perform more than one read in a row"
This reverts commit ed0f357f7d25566110d4302f33759f4ffb5a6f83.
Diffstat (limited to 'tests/libtest/lib654.c')
-rw-r--r-- | tests/libtest/lib654.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/tests/libtest/lib654.c b/tests/libtest/lib654.c index f9c8b9118..45051a9c7 100644 --- a/tests/libtest/lib654.c +++ b/tests/libtest/lib654.c @@ -5,7 +5,7 @@ * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * - * Copyright (C) 1998 - 2020, Daniel Stenberg, <daniel@haxx.se>, et al. + * Copyright (C) 1998 - 2018, Daniel Stenberg, <daniel@haxx.se>, et al. * * This software is licensed as described in the file COPYING, which * you should have received as part of this distribution. The terms @@ -26,9 +26,11 @@ static char data[]= #ifdef CURL_DOES_CONVERSIONS /* ASCII representation with escape sequences for non-ASCII platforms */ - "\x64\x75\x6d\x6d\x79\x0a"; + "\x74\x68\x69\x73\x20\x69\x73\x20\x77\x68\x61\x74\x20\x77\x65\x20\x70" + "\x6f\x73\x74\x20\x74\x6f\x20\x74\x68\x65\x20\x73\x69\x6c\x6c\x79\x20" + "\x77\x65\x62\x20\x73\x65\x72\x76\x65\x72\x0a"; #else - "dummy\n"; + "this is what we post to the silly web server\n"; #endif struct WriteThis { |