diff options
Diffstat (limited to 'tests/libtest/lib643.c')
-rw-r--r-- | tests/libtest/lib643.c | 13 |
1 files changed, 2 insertions, 11 deletions
diff --git a/tests/libtest/lib643.c b/tests/libtest/lib643.c index 08c0f2e80..7432dfce8 100644 --- a/tests/libtest/lib643.c +++ b/tests/libtest/lib643.c @@ -5,7 +5,7 @@ * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * - * Copyright (C) 1998 - 2020, Daniel Stenberg, <daniel@haxx.se>, et al. + * Copyright (C) 1998 - 2017, 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 @@ -41,20 +41,11 @@ struct WriteThis { static size_t read_callback(char *ptr, size_t size, size_t nmemb, void *userp) { #ifdef LIB644 - static int count = 0; (void)ptr; (void)size; (void)nmemb; (void)userp; - switch(count++) { - case 0: /* Return a single byte. */ - *ptr = '\n'; - return 1; - case 1: /* Request abort. */ - return CURL_READFUNC_ABORT; - } - printf("Wrongly called >2 times\n"); - exit(1); /* trigger major failure */ + return CURL_READFUNC_ABORT; #else struct WriteThis *pooh = (struct WriteThis *)userp; |