search for: 6b9467b

Displaying 1 result from an estimated 1 matches for "6b9467b".

2017 Jun 27
3
[PATCH] libvirt: disallow non-local connections (RHBZ#1347830)
...For these reasons, just forbit outright the addition of disks from non-local libvirt connections for now. --- lib/libvirt-domain.c | 38 ++++++++++++++++++++++++++++++++++++-- 1 file changed, 36 insertions(+), 2 deletions(-) diff --git a/lib/libvirt-domain.c b/lib/libvirt-domain.c index 37c0b49..6b9467b 100644 --- a/lib/libvirt-domain.c +++ b/lib/libvirt-domain.c @@ -32,6 +32,7 @@ #include <libxml/xpath.h> #include <libxml/parser.h> #include <libxml/tree.h> +#include <libxml/uri.h> #include "base64.h" @@ -203,7 +204,9 @@ guestfs_impl_add_libvirt_dom (guest...