Reduce message about too-long property names to a mere warning, it causes

too much trouble.  Still need to fix up error handling in general.
This commit is contained in:
David Gibson 2005-10-20 13:56:23 +10:00
parent 1847d161dc
commit cba839c728

View file

@ -262,7 +262,7 @@ static int check_properties(struct node *node)
/* check name length */ /* check name length */
if (strlen(prop->name) > MAX_PROPNAME_LEN) if (strlen(prop->name) > MAX_PROPNAME_LEN)
DO_ERR("Property name %s is too long in %s\n", WARNMSG("Property name %s is too long in %s\n",
prop->name, node->fullpath); prop->name, node->fullpath);
/* check this property */ /* check this property */