summaryrefslogtreecommitdiff
path: root/utility.c
diff options
context:
space:
mode:
authorJohn Beppu <beppu@lbox.org>2000-06-12 23:39:04 +0000
committerJohn Beppu <beppu@lbox.org>2000-06-12 23:39:04 +0000
commitc7ccfc99fc3ce621cc3739896493670316184dec (patch)
treeb7b02e5968fb4db92de8b2cf2645d1a6e44ef463 /utility.c
parent9f16d614083a96b521cbbca6d5c0b33da91991c4 (diff)
downloadbusybox-w32-c7ccfc99fc3ce621cc3739896493670316184dec.tar.gz
busybox-w32-c7ccfc99fc3ce621cc3739896493670316184dec.tar.bz2
busybox-w32-c7ccfc99fc3ce621cc3739896493670316184dec.zip
+ utility.c
CSTRING_BUFFER_LENGTH = 1024 /* so it recurses less often */ + grep.c uses cstring_lineFromFile(), and doesn't ever say Line is too long, anymore
Diffstat (limited to 'utility.c')
-rw-r--r--utility.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/utility.c b/utility.c
index 48aaeb85d..b9c7a76cd 100644
--- a/utility.c
+++ b/utility.c
@@ -1573,7 +1573,7 @@ extern int find_real_root_device_name(char* name)
1573} 1573}
1574#endif 1574#endif
1575 1575
1576const unsigned int CSTRING_BUFFER_LENGTH = 128; 1576const unsigned int CSTRING_BUFFER_LENGTH = 1024;
1577/* recursive parser that returns cstrings of arbitrary length 1577/* recursive parser that returns cstrings of arbitrary length
1578 * from a FILE* 1578 * from a FILE*
1579 */ 1579 */