Missing check for underlines in kmscon_font_attr_match

This commit is contained in:
danshapero 2018-06-01 19:54:19 +00:00
parent 07a4f7e1f2
commit 8444da7509

View File

@ -130,6 +130,8 @@ bool kmscon_font_attr_match(const struct kmscon_font_attr *a1,
return false;
if (a1->italic != a2->italic)
return false;
if (a1->underline != a2->underline)
return false;
if (*a1->name && *a2->name && strcmp(a1->name, a2->name))
return false;