Signed-off-by: Markus Armbruster <arm...@redhat.com> --- qerror.c | 4 ++++ qerror.h | 3 +++ 2 files changed, 7 insertions(+), 0 deletions(-)
diff --git a/qerror.c b/qerror.c index aa89a3d..8ffe4f6 100644 --- a/qerror.c +++ b/qerror.c @@ -109,6 +109,10 @@ static const QErrorStringTable qerror_table[] = { .desc = "Could not set password", }, { + .error_fmt = QERR_TOO_MANY_FILES, + .desc = "Too many open files", + }, + { .error_fmt = QERR_UNDEFINED_ERROR, .desc = "An undefined error has ocurred", }, diff --git a/qerror.h b/qerror.h index 48f1ab6..9462d5c 100644 --- a/qerror.h +++ b/qerror.h @@ -92,6 +92,9 @@ QError *qobject_to_qerror(const QObject *obj); #define QERR_UNDEFINED_ERROR \ "{ 'class': 'UndefinedError', 'data': {} }" +#define QERR_TOO_MANY_FILES \ + "{ 'class': 'fd_too_many_files', 'data': {} }" + #define QERR_VNC_SERVER_FAILED \ "{ 'class': 'VNCServerFailed', 'data': { 'target': %s } }" -- 1.6.2.5