change vdmos flag to thermal, not to confuse with b4soi

This commit is contained in:
dwarning 2020-02-25 12:43:10 +01:00 committed by Holger Vogt
parent 3686dbfb78
commit e9abecc8c7
1 changed files with 1 additions and 1 deletions

View File

@ -4088,7 +4088,7 @@ static int get_number_terminals(char *c)
char *inst = gettok_instance(&c);
strncpy(nam_buf, inst, sizeof(nam_buf) - 1);
txfree(inst);
if (strstr(nam_buf, "off") || strchr(nam_buf, '=') || strstr(nam_buf, "tnodeout"))
if (strstr(nam_buf, "off") || strchr(nam_buf, '=') || strstr(nam_buf, "tnodeout") || strstr(nam_buf, "thermal"))
break;
i++;
}