summaryrefslogtreecommitdiffstats
path: root/src/dbdump.c
diff options
context:
space:
mode:
authorRichard W.M. Jones <rjones@redhat.com>2012-08-31 09:53:44 +0100
committerRichard W.M. Jones <rjones@redhat.com>2012-08-31 09:53:44 +0100
commit4e6bf1ed653540a8954a6a11fe5a0fb424013af9 (patch)
treecdccc49d8781e74e1259447887e2b063e8ee847d /src/dbdump.c
parent0306c98d319d189281af3c15101c8d343e400f13 (diff)
downloadlibguestfs-4e6bf1ed653540a8954a6a11fe5a0fb424013af9.tar.gz
libguestfs-4e6bf1ed653540a8954a6a11fe5a0fb424013af9.tar.xz
libguestfs-4e6bf1ed653540a8954a6a11fe5a0fb424013af9.zip
src/dbdump.c: Shouldn't depend on HAVE_HIVEX (thanks Tao Zhou).
Diffstat (limited to 'src/dbdump.c')
-rw-r--r--src/dbdump.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/dbdump.c b/src/dbdump.c
index 0bdd9f47..fcff635e 100644
--- a/src/dbdump.c
+++ b/src/dbdump.c
@@ -40,7 +40,7 @@
#include "guestfs.h"
#include "guestfs-internal.h"
-#if defined(HAVE_HIVEX) && defined(DB_DUMP)
+#if defined(DB_DUMP)
static unsigned char *convert_hex_to_binary (guestfs_h *g, const char *hex, size_t hexlen, size_t *binlen_rtn);
@@ -215,4 +215,4 @@ convert_hex_to_binary (guestfs_h *g, const char *hex, size_t hexlen,
return bin;
}
-#endif /* defined(HAVE_HIVEX) && defined(DB_DUMP) */
+#endif /* defined(DB_DUMP) */