]> Git Repo - qemu.git/blobdiff - ui/console.c
util: rename qemu_open() to qemu_open_old()
[qemu.git] / ui / console.c
index f8d7643fe410e3bccc2d70f95b77331fd2f3231d..7592c3c324ffbb4dae6ac24059a31be144823dfb 100644 (file)
@@ -373,7 +373,7 @@ void qmp_screendump(const char *filename, bool has_device, const char *device,
         return;
     }
 
-    fd = qemu_open(filename, O_WRONLY | O_CREAT | O_TRUNC | O_BINARY, 0666);
+    fd = qemu_open_old(filename, O_WRONLY | O_CREAT | O_TRUNC | O_BINARY, 0666);
     if (fd == -1) {
         error_setg(errp, "failed to open file '%s': %s", filename,
                    strerror(errno));
This page took 0.025219 seconds and 4 git commands to generate.