Skip to content
Snippets Groups Projects
Commit f1216e84 authored by Danny Auble's avatar Danny Auble
Browse files

fix for qos change

parent 27387684
No related branches found
No related tags found
No related merge requests found
......@@ -708,6 +708,9 @@ static int _process_old_sql_line(const char *data_in, char **data_full_out)
} else if(!strncmp("wckeyid", data_in+i, 7)) {
xstrcat(fields, "id_wckey");
i+=7;
} else if(!strncmp("qos", data_in+i, 3)) {
xstrcat(fields, "id_qos");
i+=3;
} else if(!strncmp("uid", data_in+i, 3)) {
xstrcat(fields, "id_user");
i+=3;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment