added newlines for lack of libxml2 support

This commit is contained in:
Kevin Lin
2015-03-12 14:29:47 -04:00
parent f268794f61
commit 4c9e8bbba7
2 changed files with 5 additions and 5 deletions

View File

@@ -48,8 +48,8 @@
#define cli_msxmlmsg(...)
#endif
#define MSXML_RECLEVEL 16
#define MSXML_RECLEVEL_MAX 5
//#define MSXML_RECLEVEL 16
#define MSXML_RECLEVEL_MAX 20
#define MSXML_JSON_STRLEN_MAX 100
#define MSXML_READBUFF SCANBUFF
@@ -417,7 +417,7 @@ int cli_scanmsxml(cli_ctx *ctx)
#else
UNUSEDPARAM(ctx);
cli_dbgmsg("in cli_scanmsxml()\n");
cli_dbgmsg("cli_scanmsxml: scanning msxml documents requires libxml2!");
cli_dbgmsg("cli_scanmsxml: scanning msxml documents requires libxml2!\n");
return CL_SUCCESS;
#endif

View File

@@ -729,10 +729,10 @@ int cli_process_ooxml(cli_ctx *ctx)
UNUSEDPARAM(ctx);
cli_dbgmsg("in cli_process_ooxml\n");
#if !HAVE_LIBXML2
cli_dbgmsg("cli_process_ooxml: libxml2 needs to enabled!");
cli_dbgmsg("cli_process_ooxml: libxml2 needs to enabled!\n");
#endif
#if !HAVE_JSON
cli_dbgmsg("cli_process_ooxml: libjson needs to enabled!");
cli_dbgmsg("cli_process_ooxml: libjson needs to enabled!\n");
#endif
return CL_SUCCESS;
#endif