ex00: fix: check header only in database

This commit is contained in:
Camille Chauvet 2023-10-03 15:51:22 +00:00
parent 049aeafde0
commit dfcba0ab77

View File

@ -80,7 +80,7 @@ static int check_value(const std::string& value_str, int flag, float& out)
static int check_line(const std::string& line, regex_t& reegex, const std::string& delimiter, int flag, std::pair<unsigned int, float>& out)
{
if (line == "date,exchange_rate")
if (flag == DATABASE && line == "date,exchange_rate")
return 1;
if (regexec(&reegex, line.c_str(), 0, NULL, 0) == REG_NOMATCH)
{