Bläddra i källkod

Increase BUFSIZ to 512 to avoid bug in busybox tar.

Manuel Novoa III 24 år sedan
förälder
incheckning
0c827cb739
1 ändrade filer med 1 tillägg och 1 borttagningar
  1. 1 1
      include/stdio.h

+ 1 - 1
include/stdio.h

@@ -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)