util: replace qemu_get_local_state_pathname()
Simplify the function to only return the directory path. Callers are adjusted to use the GLib function to build paths, g_build_filename(). Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com> Reviewed-by: Daniel P. Berrangé <berrange@redhat.com> Message-Id: <20220420132624.2439741-39-marcandre.lureau@redhat.com>
This commit is contained in:
+2
-5
@@ -297,12 +297,9 @@ int qemu_pipe(int pipefd[2])
|
||||
}
|
||||
|
||||
char *
|
||||
qemu_get_local_state_pathname(const char *relative_pathname)
|
||||
qemu_get_local_state_dir(void)
|
||||
{
|
||||
g_autofree char *dir = g_strdup_printf("%s/%s",
|
||||
CONFIG_QEMU_LOCALSTATEDIR,
|
||||
relative_pathname);
|
||||
return get_relocated_path(dir);
|
||||
return get_relocated_path(CONFIG_QEMU_LOCALSTATEDIR);
|
||||
}
|
||||
|
||||
void qemu_set_tty_echo(int fd, bool echo)
|
||||
|
||||
Reference in New Issue
Block a user