cicd test fixes for libevhtp and warnings

This commit is contained in:
Olof hagsand 2021-04-01 11:20:48 +02:00
parent 61c1db72ab
commit 0020c7ff3f
4 changed files with 11 additions and 16 deletions

View file

@ -554,19 +554,6 @@ _xml_parse(const char *str,
goto done;
}
/*! FSM to detect substring
*/
static inline int
FSM(char *tag,
char ch,
int state)
{
if (tag[state] == ch)
return state+1;
else
return 0;
}
/*! Read an XML definition from file and parse it into a parse-tree, advanced API
*
* @param[in] fd A file descriptor containing the XML file (as ASCII characters)