mirror of https://github.com/xemu-project/xemu.git
qga: Relocate a path emitted in the help text
Signed-off-by: Akihiko Odaki <akihiko.odaki@gmail.com> Message-Id: <20220624145455.50058-1-akihiko.odaki@gmail.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
parent
7e270af224
commit
a24827942a
|
@ -223,6 +223,10 @@ void reopen_fd_to_null(int fd)
|
||||||
|
|
||||||
static void usage(const char *cmd)
|
static void usage(const char *cmd)
|
||||||
{
|
{
|
||||||
|
#ifdef CONFIG_FSFREEZE
|
||||||
|
g_autofree char *fsfreeze_hook = get_relocated_path(QGA_FSFREEZE_HOOK_DEFAULT);
|
||||||
|
#endif
|
||||||
|
|
||||||
printf(
|
printf(
|
||||||
"Usage: %s [-m <method> -p <path>] [<options>]\n"
|
"Usage: %s [-m <method> -p <path>] [<options>]\n"
|
||||||
"QEMU Guest Agent " QEMU_FULL_VERSION "\n"
|
"QEMU Guest Agent " QEMU_FULL_VERSION "\n"
|
||||||
|
@ -270,7 +274,7 @@ QEMU_HELP_BOTTOM "\n"
|
||||||
, cmd, QGA_VIRTIO_PATH_DEFAULT, QGA_SERIAL_PATH_DEFAULT,
|
, cmd, QGA_VIRTIO_PATH_DEFAULT, QGA_SERIAL_PATH_DEFAULT,
|
||||||
dfl_pathnames.pidfile,
|
dfl_pathnames.pidfile,
|
||||||
#ifdef CONFIG_FSFREEZE
|
#ifdef CONFIG_FSFREEZE
|
||||||
QGA_FSFREEZE_HOOK_DEFAULT,
|
fsfreeze_hook,
|
||||||
#endif
|
#endif
|
||||||
dfl_pathnames.state_dir);
|
dfl_pathnames.state_dir);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue