2010-09-27 22:07:21 +00:00
|
|
|
Index: xen-4.0.1-testing/tools/libxen/src/xen_common.c
|
2007-04-25 23:53:07 +00:00
|
|
|
===================================================================
|
2010-09-27 22:07:21 +00:00
|
|
|
--- xen-4.0.1-testing.orig/tools/libxen/src/xen_common.c
|
|
|
|
+++ xen-4.0.1-testing/tools/libxen/src/xen_common.c
|
2009-05-04 16:38:09 +00:00
|
|
|
@@ -904,8 +904,15 @@ static void parse_into(xen_session *s, x
|
2007-02-19 22:34:05 +00:00
|
|
|
0 != strcmp((char *)value_node->children->name, "struct") ||
|
|
|
|
value_node->children->children == NULL)
|
|
|
|
{
|
|
|
|
+#if PERMISSIVE
|
|
|
|
+ fprintf(stderr,
|
|
|
|
+ "Expected Map from the server, but didn't get one\n");
|
|
|
|
+ ((arbitrary_map **)value)[slot] = NULL;
|
|
|
|
+#else
|
|
|
|
+
|
|
|
|
server_error(s,
|
|
|
|
"Expected Map from the server, but didn't get it");
|
|
|
|
+#endif
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|