skip comment address line

This commit is contained in:
orignal 2017-05-05 13:54:21 -04:00
parent 124e2e759c
commit d95ee55497

View file

@ -355,8 +355,8 @@ namespace client
{
getline(f, s);
if (!s.length())
continue; // skip empty line
if (!s.length() || s[0] == '#')
continue; // skip empty or comment line
size_t pos = s.find('=');