qemu_shim: Update temporary directory template

The template still references libvirt-qemu-shim, which was at one
point the name used to refer to what we now know as virt-qemu-run.

Signed-off-by: Andrea Bolognani <abologna@redhat.com>
This commit is contained in:
Andrea Bolognani 2020-01-27 17:48:17 +01:00
parent 7dca28e229
commit c8a3a5d79b

View File

@ -151,7 +151,7 @@ int main(int argc, char **argv)
signal(SIGHUP, qemuShimSigShutdown);
if (root == NULL) {
if (!(root = g_dir_make_tmp("libvirt-qemu-shim-XXXXXX", &error))) {
if (!(root = g_dir_make_tmp("virt-qemu-run-XXXXXX", &error))) {
g_printerr("%s: cannot create temporary dir: %s\n",
argv[0], error->message);
return 1;