git://scientific.zcu.cz
/
jra1mw.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
aa2e6ab
)
Unescape error message from notification calls.
author
Zdeněk Salvet
<salvet@ics.muni.cz>
Fri, 19 Mar 2010 13:44:06 +0000
(13:44 +0000)
committer
Zdeněk Salvet
<salvet@ics.muni.cz>
Fri, 19 Mar 2010 13:44:06 +0000
(13:44 +0000)
org.glite.lb.common/src/xml_parse.c.T
patch
|
blob
|
blame
|
history
diff --git
a/org.glite.lb.common/src/xml_parse.c.T
b/org.glite.lb.common/src/xml_parse.c.T
index
5420b2d
..
4e81d9d
100644
(file)
--- a/
org.glite.lb.common/src/xml_parse.c.T
+++ b/
org.glite.lb.common/src/xml_parse.c.T
@@
-666,7
+666,7
@@
static void startNotifResult(void *data, const char *el, const char **attr)
if (!strcmp(attr[i],"code"))
XMLCtx->errCode = atoi(attr[i+1]);
else if (!strcmp(attr[i],"desc"))
- XMLCtx->errDesc =
strdup
(attr[i+1]);
+ XMLCtx->errDesc =
glite_lbu_EscapeXML
(attr[i+1]);
else { unexpError() }
}
break;