When deciding what socket to connect to, we build the daemon path
that we need to autostart. This path only needs to be populated
if we actually intend to use autostart.
Reviewed-by: Ján Tomko <jtomko@redhat.com>
Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
return NULL;
}
- if (!(*daemon_path = virFileFindResourceFull(daemon_name,
- NULL, NULL,
- abs_top_builddir "/src",
- SBINDIR,
- env_name)))
- return NULL;
+ if (flags & REMOTE_DRIVER_OPEN_AUTOSTART) {
+ if (!(*daemon_path = virFileFindResourceFull(daemon_name,
+ NULL, NULL,
+ abs_top_builddir "/src",
+ SBINDIR,
+ env_name)))
+ return NULL;
+ } else {
+ *daemon_path = NULL;
+ }
VIR_DEBUG("Chosen UNIX sockname=%s daemon_path=%s with mode=%s",
sock_name, NULLSTR(*daemon_path),