aboutsummaryrefslogtreecommitdiff
path: root/qemu-nbd.c
diff options
context:
space:
mode:
authorEric Blake <eblake@redhat.com>2017-07-21 08:50:46 -0500
committerEric Blake <eblake@redhat.com>2017-07-24 08:53:08 -0500
commitbe3771338fbf6368c63cc6e3406ac1423e62c01a (patch)
treecb00abcf375034f777682757392efd4d9c909f90 /qemu-nbd.c
parentcf44d31d35df3de9d4f49339254050195f777f3e (diff)
qemu-nbd: Update version string
qemu-io and qemu-img already mirror the qemu version string, time to make qemu-nbd do the same. Reported-by: 陳培泓 <pahome.chen@mirlab.org> Signed-off-by: Eric Blake <eblake@redhat.com> Message-Id: <20170721135047.25005-2-eblake@redhat.com> Reviewed-by: Daniel P. Berrange <berrange@redhat.com>
Diffstat (limited to 'qemu-nbd.c')
-rw-r--r--qemu-nbd.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/qemu-nbd.c b/qemu-nbd.c
index 78d05bea2d..1086934a95 100644
--- a/qemu-nbd.c
+++ b/qemu-nbd.c
@@ -36,6 +36,7 @@
#include "io/channel-socket.h"
#include "crypto/init.h"
#include "trace/control.h"
+#include "qemu-version.h"
#include <getopt.h>
#include <libgen.h>
@@ -129,10 +130,10 @@ static void usage(const char *name)
static void version(const char *name)
{
printf(
-"%s version 0.0.1\n"
+"%s " QEMU_VERSION QEMU_PKGVERSION "\n"
"Written by Anthony Liguori.\n"
"\n"
-"Copyright (C) 2006 Anthony Liguori <anthony@codemonkey.ws>.\n"
+QEMU_COPYRIGHT "\n"
"This is free software; see the source for copying conditions. There is NO\n"
"warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n"
, name);