From 3da2c8081478ee11c7f3aebcbf42680c975b0712 Mon Sep 17 00:00:00 2001 From: Markus Armbruster Date: Wed, 20 Jan 2010 13:07:31 +0100 Subject: [PATCH] QError: New QERR_OPEN_FILE_FAILED Signed-off-by: Markus Armbruster Signed-off-by: Anthony Liguori --- qerror.c | 4 ++++ qerror.h | 3 +++ 2 files changed, 7 insertions(+) diff --git a/qerror.c b/qerror.c index 5f8fc5dec5..2f657f4f7b 100644 --- a/qerror.c +++ b/qerror.c @@ -72,6 +72,10 @@ static const QErrorStringTable qerror_table[] = { .error_fmt = QERR_FD_NOT_SUPPLIED, .desc = "No file descriptor supplied via SCM_RIGHTS", }, + { + .error_fmt = QERR_OPEN_FILE_FAILED, + .desc = "Could not open '%(filename)'", + }, { .error_fmt = QERR_INVALID_BLOCK_FORMAT, .desc = "Invalid block format %(name)", diff --git a/qerror.h b/qerror.h index 9e220d6b45..ee59615bd2 100644 --- a/qerror.h +++ b/qerror.h @@ -64,6 +64,9 @@ QError *qobject_to_qerror(const QObject *obj); #define QERR_FD_NOT_SUPPLIED \ "{ 'class': 'FdNotSupplied', 'data': {} }" +#define QERR_OPEN_FILE_FAILED \ + "{ 'class': 'OpenFileFailed', 'data': { 'filename': %s } }" + #define QERR_INVALID_BLOCK_FORMAT \ "{ 'class': 'InvalidBlockFormat', 'data': { 'name': %s } }" -- GitLab