2011-09-15 23:43:21 +02:00
|
|
|
Index: xen-4.1.2-testing/tools/libxen/src/xen_common.c
|
2007-04-26 01:53:07 +02:00
|
|
|
===================================================================
|
2011-09-15 23:43:21 +02:00
|
|
|
--- xen-4.1.2-testing.orig/tools/libxen/src/xen_common.c
|
|
|
|
+++ xen-4.1.2-testing/tools/libxen/src/xen_common.c
|
2009-05-04 18:38:09 +02:00
|
|
|
@@ -904,8 +904,15 @@ static void parse_into(xen_session *s, x
|
2007-02-19 23:34:05 +01: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
|
|
|
|
{
|