+Tue Aug 7 15:28:00 BST 2007 Richard W.M. Jones <rjones@redhat.com>
+
+ * src/remote_internal.c: Fix build bug introduced by earlier
+ patch.
+
Tue Aug 7 14:18:00 BST 2007 Richard W.M. Jones <rjones@redhat.com>
* qemud/qemud.c: Fix --config/-f option to libvirtd.
#define _GNU_SOURCE /* for asprintf */
+#include "config.h"
+
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
*/
struct query_fields *vars, *var;
char *query;
-#if HAVE_XMLURI_QUERY_RAW
+#ifdef HAVE_XMLURI_QUERY_RAW
query = uri->query_raw;
#else
query = uri->query;
#endif
}
-#if HAVE_XMLURI_QUERY_RAW
+#ifdef HAVE_XMLURI_QUERY_RAW
if (uri->query_raw) xmlFree (uri->query_raw);
#else
if (uri->query) xmlFree (uri->query);
#endif
if (query_create (vars, NULL,
-#if HAVE_XMLURI_QUERY_RAW
+#ifdef HAVE_XMLURI_QUERY_RAW
&uri->query_raw
#else
&uri->query