aboutsummaryrefslogtreecommitdiffstats
path: root/xmlstub.c
diff options
context:
space:
mode:
authorAnders Broman <anders.broman@ericsson.com>2004-04-25 10:38:24 +0000
committerAnders Broman <anders.broman@ericsson.com>2004-04-25 10:38:24 +0000
commitf2ecb66547ebaa02f7dac1666be1adbfe8d25d4d (patch)
tree675a5785c4b0519efa5df5bbfad8b402b951fd84 /xmlstub.c
parente3d1a255a15325f0568e9620bbce49d7333e573d (diff)
Use the newly added "report_failure" rather than g_warning if no xml library
present. svn path=/trunk/; revision=10687
Diffstat (limited to 'xmlstub.c')
-rw-r--r--xmlstub.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/xmlstub.c b/xmlstub.c
index f58f8d4027..73a96ed73e 100644
--- a/xmlstub.c
+++ b/xmlstub.c
@@ -3,7 +3,7 @@
* exists so that the library can be loaded on systems that
* have it.
*
- * $Id: xmlstub.c,v 1.3 2004/01/18 16:19:15 jmayer Exp $
+ * $Id: xmlstub.c,v 1.4 2004/04/25 10:38:24 etxrab Exp $
*
* Copyright (c) 2001 by David Frascone <dave@frascone.com>
*
@@ -28,6 +28,7 @@
#include <glib.h>
#include <gmodule.h>
+#include <epan/report_err.h>
/* XML Stub routines */
#define IN_XMLSTUB
@@ -68,7 +69,7 @@ loadLibXML(void)
* under windows? Perhaps we should check . . .
*/
if ((handle = g_module_open(XML_LIBRARY, G_MODULE_BIND_LAZY)) == NULL) {
- g_warning("XMLStub: Unable to open module " XML_LIBRARY);
+ report_failure("XMLStub: Unable to open module " XML_LIBRARY );
return (-1);
}