diff options
author | Bin Meng | 2022-09-27 13:06:04 +0200 |
---|---|---|
committer | Christian Schoenebeck | 2022-10-24 12:24:32 +0200 |
commit | f723f626627fda681327075105701695d7c630e5 (patch) | |
tree | 8ede6c19633703628a11a9d2369b954afe321a1f /fsdev | |
parent | Merge tag 'pull-target-arm-20221020' of https://git.linaro.org/people/pmaydel... (diff) | |
download | qemu-f723f626627fda681327075105701695d7c630e5.tar.gz qemu-f723f626627fda681327075105701695d7c630e5.tar.xz qemu-f723f626627fda681327075105701695d7c630e5.zip |
fsdev/virtfs-proxy-helper: Use g_mkdir()
Use g_mkdir() to create a directory on all platforms.
Signed-off-by: Bin Meng <bin.meng@windriver.com>
Reviewed-by: Christian Schoenebeck <qemu_oss@crudebyte.com>
Message-Id: <20220927110632.1973965-27-bmeng.cn@gmail.com>
Signed-off-by: Christian Schoenebeck <qemu_oss@crudebyte.com>
Diffstat (limited to 'fsdev')
-rw-r--r-- | fsdev/virtfs-proxy-helper.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/fsdev/virtfs-proxy-helper.c b/fsdev/virtfs-proxy-helper.c index 2dde27922f..5cafcd7703 100644 --- a/fsdev/virtfs-proxy-helper.c +++ b/fsdev/virtfs-proxy-helper.c @@ -10,6 +10,7 @@ */ #include "qemu/osdep.h" +#include <glib/gstdio.h> #include <sys/resource.h> #include <getopt.h> #include <syslog.h> @@ -639,7 +640,7 @@ static int do_create_others(int type, struct iovec *iovec) if (retval < 0) { goto err_out; } - retval = mkdir(path.data, mode); + retval = g_mkdir(path.data, mode); break; case T_SYMLINK: retval = proxy_unmarshal(iovec, offset, "ss", &oldpath, &path); |