git.annexia.org
/
libguestfs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
21fef55
)
Fix inspection code when PCRE or hivex is missing.
author
Richard W.M. Jones
<rjones@redhat.com>
Thu, 3 Mar 2011 13:23:23 +0000
(13:23 +0000)
committer
Richard W.M. Jones
<rjones@redhat.com>
Thu, 3 Mar 2011 13:23:34 +0000
(13:23 +0000)
src/inspect.c
patch
|
blob
|
history
diff --git
a/src/inspect.c
b/src/inspect.c
index
ac2050c
..
4986cac
100644
(file)
--- 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