blob: 240cba1b1ce24f0be6d3b2d440ae2472e45934b9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
--- ../tla/libneon.orig/ne_xml.c Sat Dec 6 20:35:29 2003
+++ ../tla/libneon/ne_xml.c Sat Apr 17 20:11:55 2004
@@ -538,7 +538,7 @@
void ne_xml_set_error(ne_xml_parser *p, const char *msg)
{
- ne_snprintf(p->error, ERR_SIZE, msg);
+ ne_snprintf(p->error, ERR_SIZE, "%s", msg);
}
#ifdef HAVE_LIBXML
|