]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
lib643: LIB644 is never defined, this is dead code
authorDaniel Stenberg <daniel@haxx.se>
Tue, 14 Mar 2023 16:24:02 +0000 (17:24 +0100)
committerDaniel Stenberg <daniel@haxx.se>
Tue, 14 Mar 2023 23:08:09 +0000 (00:08 +0100)
Closes #10765

tests/libtest/lib643.c

index c16600e29f6cbc47319d48af8e2276ac2393d319..efd508f8d041ddac359678984b50381688407651 100644 (file)
@@ -35,23 +35,6 @@ 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 */
-#else
-
   struct WriteThis *pooh = (struct WriteThis *)userp;
   int eof = !*pooh->readptr;
 
@@ -71,7 +54,6 @@ static size_t read_callback(char *ptr, size_t size, size_t nmemb, void *userp)
   }
 
   return 0;                         /* no more data left to deliver */
-#endif
 }
 
 static int once(char *URL, bool oldstyle)