diff options
author | Akihiko Odaki | 2022-06-24 16:54:55 +0200 |
---|---|---|
committer | Paolo Bonzini | 2022-07-08 11:03:36 +0200 |
commit | a24827942afaac413b8dd4ef9b71b7495755f15e (patch) | |
tree | a5ef35d81a3f0663c64bb452f9b52f0caa738b93 /qga | |
parent | build: Do not depend on pc-bios for config-host.mak (diff) | |
download | qemu-a24827942afaac413b8dd4ef9b71b7495755f15e.tar.gz qemu-a24827942afaac413b8dd4ef9b71b7495755f15e.tar.xz qemu-a24827942afaac413b8dd4ef9b71b7495755f15e.zip |
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>
Diffstat (limited to 'qga')
-rw-r--r-- | qga/main.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/qga/main.c b/qga/main.c index c373fec3ee..5f1efa2333 100644 --- a/qga/main.c +++ b/qga/main.c @@ -223,6 +223,10 @@ void reopen_fd_to_null(int fd) static void usage(const char *cmd) { +#ifdef CONFIG_FSFREEZE + g_autofree char *fsfreeze_hook = get_relocated_path(QGA_FSFREEZE_HOOK_DEFAULT); +#endif + printf( "Usage: %s [-m <method> -p <path>] [<options>]\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, dfl_pathnames.pidfile, #ifdef CONFIG_FSFREEZE - QGA_FSFREEZE_HOOK_DEFAULT, + fsfreeze_hook, #endif dfl_pathnames.state_dir); } |