OSDN Git Service

Increase BUFSIZ to 512 to avoid bug in busybox tar.
authorManuel Novoa III <mjn3@codepoet.org>
Wed, 17 Jan 2001 16:17:49 +0000 (16:17 -0000)
committerManuel Novoa III <mjn3@codepoet.org>
Wed, 17 Jan 2001 16:17:49 +0000 (16:17 -0000)
include/stdio.h

index 01f6667..61c1783 100644 (file)
@@ -51,7 +51,7 @@ struct __stdio_file {
 typedef struct __stdio_file FILE;
 
 /* Default buffer size.  */
-#define BUFSIZ     (500) /* should get us a fully used kmalloc bucket */
+#define BUFSIZ     (512)
 
 /* Define EOF and NULL */
 #define EOF    (-1)