Merge "another fix to ignore space then = sign" into twrp2.7

This commit is contained in:
Dees Troy
2013-09-10 08:45:23 -05:00
committed by Gerrit Code Review
+2
View File
@@ -98,6 +98,8 @@ int OpenRecoveryScript::run_script_file(void) {
LOGINFO("command is: '%s' and ", command);
val_start = script_line;
val_start += cindex + 1;
if ((int) *val_start == 32)
val_start++; //get rid of space
if ((int) *val_start == 51)
val_start++; //get rid of = at the beginning
strncpy(value, val_start, line_len - cindex - remove_nl);