search for: 4986cac

Displaying 1 result from an estimated 1 matches for "4986cac".

Did you mean: 4926c9c
2011 Mar 03
1
[PATCH] Fix inspection code when PCRE or hivex is missing.
...nes <rjones at redhat.com> Date: Thu, 3 Mar 2011 13:23:23 +0000 Subject: [PATCH] Fix inspection code when PCRE or hivex is missing. --- src/inspect.c | 24 ++++++++++++++++++++++++ 1 files changed, 24 insertions(+), 0 deletions(-) diff --git a/src/inspect.c b/src/inspect.c index ac2050c..4986cac 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_...