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.
This commit is contained in:
Cole Robinson 2010-02-24 08:26:11 -05:00
parent 8ddff3e6cd
commit c56cf8d55f
1 changed files with 2 additions and 2 deletions

View File

@ -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;
}