diff options
author | Richard W.M. Jones <rjones@redhat.com> | 2011-03-03 13:23:23 +0000 |
---|---|---|
committer | Richard W.M. Jones <rjones@redhat.com> | 2011-03-03 13:23:34 +0000 |
commit | 2b26c7f721fc8ed2e6f64963289981ac286c02aa (patch) | |
tree | 1ab59fe7840e9a989fd6659dd81639a3e525fad1 | |
parent | 21fef55ca4907aa9872754f20320c24c7f8a5fac (diff) | |
download | libguestfs-2b26c7f721fc8ed2e6f64963289981ac286c02aa.tar.gz libguestfs-2b26c7f721fc8ed2e6f64963289981ac286c02aa.tar.xz libguestfs-2b26c7f721fc8ed2e6f64963289981ac286c02aa.zip |
Fix inspection code when PCRE or hivex is missing.
-rw-r--r-- | src/inspect.c | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/src/inspect.c b/src/inspect.c index ac2050c6..4986cac7 100644 --- a/src/inspect.c +++ b/src/inspect.c @@ -2858,6 +2858,30 @@ guestfs__inspect_list_applications (guestfs_h *g, const char *root) NOT_IMPL(NULL); } +char * +guestfs__inspect_get_format (guestfs_h *g, const char *root) +{ + NOT_IMPL(NULL); +} + +int +guestfs__inspect_is_live (guestfs_h *g, const char *root) +{ + NOT_IMPL(-1); +} + +int +guestfs__inspect_is_netinst (guestfs_h *g, const char *root) +{ + NOT_IMPL(-1); +} + +int +guestfs__inspect_is_multipart (guestfs_h *g, const char *root) +{ + NOT_IMPL(-1); +} + #endif /* no PCRE or hivex at compile time */ void |