From: Cole Robinson Date: Wed, 24 Feb 2010 13:26:11 +0000 (-0500) Subject: remote: Improve error message when libvirtd isn't running X-Git-Tag: v0.7.7~71 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c56cf8d55fc60340707bbee752b9bf3c54e66c04;p=thirdparty%2Flibvirt.git remote: Improve error message when libvirtd isn't running While this could lead people in the wrong direction, people most commonly hit this error when libvirtd isn't running, so let's mention a possible fix. --- diff --git a/src/remote/remote_driver.c b/src/remote/remote_driver.c index 2060cf6411..def4617b5f 100644 --- a/src/remote/remote_driver.c +++ b/src/remote/remote_driver.c @@ -724,8 +724,8 @@ doRemoteOpen (virConnectPtr conn, } } virReportSystemError(errno, - _("unable to connect to '%s'"), - sockname); + _("unable to connect to '%s', libvirtd may need to be started"), + sockname); goto failed; }