1232: Fix storage.cfg reading broken by the `str_startswith` change r=def- a=heinrich5991



Co-authored-by: heinrich5991 <heinrich5991@gmail.com>
This commit is contained in:
bors[bot] 2018-07-26 14:04:21 +00:00
commit e64375e129

View file

@ -109,7 +109,7 @@ public:
const char *pLineWithoutPrefix = str_startswith(pLine, "add_path ");
if(pLineWithoutPrefix)
{
AddPath(pLine);
AddPath(pLineWithoutPrefix);
}
}