From: Daniel P. Berrangé Date: Fri, 18 Jun 2021 14:08:07 +0000 (+0100) Subject: remote: fix prefix for libxl Xen driver X-Git-Tag: v7.5.0-rc1~39 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ce410b6ea9dee6916e76e72e3c2c77f25ba42f84;p=thirdparty%2Flibvirt.git remote: fix prefix for libxl Xen driver The libxl driver supports xen:///system URLs and the daemon socket uses 'virtxend' as the socket prefix. Reported-by: Jim Fehlig Reviewed-by: Jim Fehlig Signed-off-by: Daniel P. Berrangé --- diff --git a/src/remote/remote_daemon_dispatch.c b/src/remote/remote_daemon_dispatch.c index 838f4a925f..dd797a81f7 100644 --- a/src/remote/remote_daemon_dispatch.c +++ b/src/remote/remote_daemon_dispatch.c @@ -2021,7 +2021,7 @@ remoteDispatchProbeURI(bool readonly, * calls in daemonInitialize */ const char *drivers[] = { # ifdef WITH_LIBXL - "libxl", + "xen", # endif # ifdef WITH_QEMU "qemu",