Fixed _log_open_tag to remove namespace prefix with libexpat

This commit is contained in:
James Booth
2015-03-28 17:37:11 +00:00
parent 59d2dd55d2
commit 527bc0573a
4 changed files with 15 additions and 2 deletions

View File

@@ -238,6 +238,11 @@ parser_t *parser_new(xmpp_ctx_t *ctx,
return parser;
}
char* parser_attr_name(xmpp_ctx_t *ctx, char *nsname)
{
return xmpp_strdup(ctx, nsname);
}
/* free a parser */
void parser_free(parser_t *parser)
{