Currently we search along the hard-coded names:
SBINDIR "/libvirtd"
SBINDIR "/libvirtd_dbg"
but if the environment variable $LIBVIRTD_PATH is set to the
name of the libvirtd binary, that is used instead. Fix the
error message so it accurately reflects current behaviour
($PATH is NOT searched).
}
if (!(daemonPath = remoteFindDaemonPath())) {
- virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
- _("Unable to locate libvirtd daemon in $PATH"));
+ virReportError(VIR_ERR_INTERNAL_ERROR,
+ _("Unable to locate libvirtd daemon in %s "
+ "(to override, set $LIBVIRTD_PATH to the "
+ "name of the libvirtd binary)"),
+ SBINDIR);
goto failed;
}
if (!(priv->client = virNetClientNewUNIX(sockname,