From b29aff322f517ae5c9d3b032e5bd1cad3b2dd8b7 Mon Sep 17 00:00:00 2001 From: Cole Robinson Date: Mon, 27 Apr 2015 10:43:22 -0400 Subject: [PATCH] storage: Fix autostart dir for qemu:///session --- src/storage/storage_driver.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;