summaryrefslogtreecommitdiffstats
path: root/qemu-nbd.c
diff options
context:
space:
mode:
authorEric Blake2018-12-15 14:53:03 +0100
committerEric Blake2019-01-05 00:37:11 +0100
commit3ba1b7baf4b2518e8efdbe50175d909b79c21596 (patch)
tree4b04a9cf6ea80f2189f6807e7b29329ad1a97e38 /qemu-nbd.c
parentblock/nbd-client: use traces instead of noisy error_report_err (diff)
downloadqemu-3ba1b7baf4b2518e8efdbe50175d909b79c21596.tar.gz
qemu-3ba1b7baf4b2518e8efdbe50175d909b79c21596.tar.xz
qemu-3ba1b7baf4b2518e8efdbe50175d909b79c21596.zip
qemu-nbd: Use program name in error messages
This changes output from: $ qemu-nbd nosuch Failed to blk_new_open 'nosuch': Could not open 'nosuch': No such file or directory to something more consistent with qemu-img and qemu: $ qemu-nbd nosuch qemu-nbd: Failed to blk_new_open 'nosuch': Could not open 'nosuch': No such file or directory Update the lone affected test to match. (Hmm - is it sad that we don't do much testing of expected failures?) Signed-off-by: Eric Blake <eblake@redhat.com> Reviewed-by: Richard W.M. Jones <rjones@redhat.com> Reviewed-by: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com> Message-Id: <20181215135324.152629-2-eblake@redhat.com>
Diffstat (limited to 'qemu-nbd.c')
-rw-r--r--qemu-nbd.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/qemu-nbd.c b/qemu-nbd.c
index ca7109652e..e169b839ec 100644
--- a/qemu-nbd.c
+++ b/qemu-nbd.c
@@ -571,6 +571,7 @@ int main(int argc, char **argv)
#endif
module_call_init(MODULE_INIT_TRACE);
+ error_set_progname(argv[0]);
qcrypto_init(&error_fatal);
module_call_init(MODULE_INIT_QOM);