Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
src/dbdump.c: Shouldn't depend on HAVE_HIVEX (thanks Tao Zhou).
  • Loading branch information
rwmjones committed Aug 31, 2012
1 parent 0306c98 commit 4e6bf1e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/dbdump.c
Expand Up @@ -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);

Expand Down Expand Up @@ -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) */

0 comments on commit 4e6bf1e

Please sign in to comment.