From c56cf8d55fc60340707bbee752b9bf3c54e66c04 Mon Sep 17 00:00:00 2001 From: Cole Robinson Date: Wed, 24 Feb 2010 08:26:11 -0500 Subject: [PATCH] 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. --- src/remote/remote_driver.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; } -- 2.47.2