diff options
| author | Max Reitz | 2016-10-25 15:11:29 +0200 |
|---|---|---|
| committer | Kevin Wolf | 2016-10-27 19:05:23 +0200 |
| commit | 82d73014a9111c53fefb7e7954c9e370d23f7569 (patch) | |
| tree | 2693f2e3e574c9c791912932385ef751ed70d4a7 /block | |
| parent | qemu-iotests: Fix typo for NFS with IMGOPTSSYNTAX (diff) | |
| download | qemu-82d73014a9111c53fefb7e7954c9e370d23f7569.tar.gz qemu-82d73014a9111c53fefb7e7954c9e370d23f7569.tar.xz qemu-82d73014a9111c53fefb7e7954c9e370d23f7569.zip | |
block/nbd: Drop trailing "." in error messages
Reviewed-by: Eric Blake <eblake@redhat.com>
Reviewed-by: Kevin Wolf <kwolf@redhat.com>
Signed-off-by: Max Reitz <mreitz@redhat.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Diffstat (limited to 'block')
| -rw-r--r-- | block/nbd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/block/nbd.c b/block/nbd.c index 6bc06d6198..ce7c14f8df 100644 --- a/block/nbd.c +++ b/block/nbd.c @@ -200,9 +200,9 @@ static SocketAddress *nbd_config(BDRVNBDState *s, QemuOpts *opts, Error **errp) if (!s->path == !s->host) { if (s->path) { - error_setg(errp, "path and host may not be used at the same time."); + error_setg(errp, "path and host may not be used at the same time"); } else { - error_setg(errp, "one of path and host must be specified."); + error_setg(errp, "one of path and host must be specified"); } return NULL; } |
