commit | 7e176dab1bd84f86e047625bd54eb179dbabf25d | [log] [tgz] |
---|---|---|
author | Dees Troy <dees_troy@teamw.in> | Tue Oct 01 10:34:50 2013 -0500 |
committer | Gerrit Code Review <gerrit@198.50.184.117> | Tue Oct 01 10:34:50 2013 -0500 |
tree | c2184664c6a03e89fb069af8b75ca726f010874e | |
parent | 0221bd9c4d05cd19d03aae69b2e65dbba1cad982 [diff] | |
parent | a6c5f4e63325f3a7f653d26aeccb239a35941ed0 [diff] |
Merge "check for space after = too" into twrp2.7
diff --git a/openrecoveryscript.cpp b/openrecoveryscript.cpp index fee6fe9..87118bc 100644 --- a/openrecoveryscript.cpp +++ b/openrecoveryscript.cpp
@@ -102,6 +102,8 @@ val_start++; //get rid of space if ((int) *val_start == 51) val_start++; //get rid of = at the beginning + if ((int) *val_start == 32) + val_start++; //get rid of space strncpy(value, val_start, line_len - cindex - remove_nl); LOGINFO("value is: '%s'\n", value); } else {