From: Cole Robinson Date: Mon, 27 Apr 2015 14:43:22 +0000 (-0400) Subject: storage: Fix autostart dir for qemu:///session X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=b29aff322f517ae5c9d3b032e5bd1cad3b2dd8b7;p=libvirt.git storage: Fix autostart dir for qemu:///session --- diff --git a/src/storage/storage_driver.c b/src/storage/storage_driver.c index 306d98e397..3b7746b993 100644 --- a/src/storage/storage_driver.c +++ b/src/storage/storage_driver.c @@ -237,7 +237,7 @@ storageStateInitialize(bool privileged, if ((virAsprintf(&driver->configDir, "%s/storage", configdir) < 0) || (virAsprintf(&driver->autostartDir, - "%s/storage", configdir) < 0) || + "%s/storage/autostart", configdir) < 0) || (virAsprintf(&driver->stateDir, "%s/storage/run", rundir) < 0)) goto error;