diff options
| author | Luiz Capitulino <lcapitulino@redhat.com> | 2012-07-25 13:16:53 -0300 |
|---|---|---|
| committer | Luiz Capitulino <lcapitulino@redhat.com> | 2012-08-13 13:19:30 -0300 |
| commit | b5d90f0424ea27eb126a4eaed2554908fc463d9f (patch) | |
| tree | 8e28506697344174add0be767b0dfc46615c675f | |
| parent | 484051b9960736a6ebff3cfed78c4b29758e63c0 (diff) | |
| download | focaccia-qemu-b5d90f0424ea27eb126a4eaed2554908fc463d9f.tar.gz focaccia-qemu-b5d90f0424ea27eb126a4eaed2554908fc463d9f.zip | |
qerror: QERR_DEVICE_ENCRYPTED: change error message
Match what HMP commands print on DeviceEncrypted errors. Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com> Reviewed-by: Markus Armbruster <armbru@redhat.com>
| -rw-r--r-- | qerror.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qerror.c b/qerror.c index 082de987ed..de0a79e17d 100644 --- a/qerror.c +++ b/qerror.c @@ -81,7 +81,7 @@ static const QErrorStringTable qerror_table[] = { }, { .error_fmt = QERR_DEVICE_ENCRYPTED, - .desc = "Device '%(device)' is encrypted", + .desc = "'%(device)' (%(filename)) is encrypted", }, { .error_fmt = QERR_DEVICE_FEATURE_BLOCKS_MIGRATION, |