From: nbd Date: Wed, 16 Dec 2009 13:47:47 +0000 (+0000) Subject: wrt350nv2-builder: increase path limit from 64 bytes to 256 bytes, as 64 bytes may... X-Git-Url: http://git.ozo.com/?p=openwrt-10.03%2F.git;a=commitdiff_plain;h=e8ab9e6d1536918aee188e6ff260539899880956 wrt350nv2-builder: increase path limit from 64 bytes to 256 bytes, as 64 bytes may not be enough. suggested by maddes git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18794 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- diff --git a/tools/wrt350nv2-builder/src/wrt350nv2-builder.c b/tools/wrt350nv2-builder/src/wrt350nv2-builder.c index 784f92154..36932863a 100644 --- a/tools/wrt350nv2-builder/src/wrt350nv2-builder.c +++ b/tools/wrt350nv2-builder/src/wrt350nv2-builder.c @@ -187,8 +187,8 @@ int parse_par_file(FILE *f_par) { int lineno; int count; - char string1[64]; - char string2[64]; + char string1[256]; + char string2[256]; int value; mtd_info *mtd; @@ -257,7 +257,7 @@ int parse_par_file(FILE *f_par) { // split line if starting with a colon switch (line[0]) { case ':': - count = sscanf(line, ":%63s %i %63s", string1, &value, string2); + count = sscanf(line, ":%255s %i %255s", string1, &value, string2); if (count != 3) { printf("line %i does not meet defined format (: )\n", lineno); } else { @@ -316,7 +316,7 @@ int parse_par_file(FILE *f_par) { } break; case '#': // integer values - count = sscanf(line, "#%63s %i", string1, &value); + count = sscanf(line, "#%255s %i", string1, &value); if (count != 2) { printf("line %i does not meet defined format (: \n", lineno); } else { @@ -332,7 +332,7 @@ int parse_par_file(FILE *f_par) { } break; case '$': // strings - count = sscanf(line, "$%63s %63s", string1, string2); + count = sscanf(line, "$%255s %255s", string1, string2); if (count != 2) { printf("line %i does not meet defined format (: )\n", lineno); } else {