1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-07-02 20:55:27 +03:00

wrt350nv2-builder: fix a small off-by-one error (thx, mb)

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18764 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
nbd 2009-12-12 01:01:42 +00:00
parent 6c4258444e
commit 67c938ceba

View File

@ -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, ":%64s %i %64s", string1, &value, string2);
count = sscanf(line, ":%63s %i %63s", string1, &value, string2);
if (count != 3) {
printf("line %i does not meet defined format (:<mtdname> <mtdsize> <file>)\n", lineno);
} else {
@ -316,7 +316,7 @@ int parse_par_file(FILE *f_par) {
}
break;
case '#': // integer values
count = sscanf(line, "#%64s %i", string1, &value);
count = sscanf(line, "#%63s %i", string1, &value);
if (count != 2) {
printf("line %i does not meet defined format (:<variable name> <integer>\n", lineno);
} else {
@ -332,7 +332,7 @@ int parse_par_file(FILE *f_par) {
}
break;
case '$': // strings
count = sscanf(line, "$%64s %64s", string1, string2);
count = sscanf(line, "$%63s %63s", string1, string2);
if (count != 2) {
printf("line %i does not meet defined format (:<mtdname> <mtdsize> <file>)\n", lineno);
} else {