Il 30/05/2012 16:14, Luiz Capitulino ha scritto: > Specify it's too many open files in system (ENFILE). > > There's no compatibility issue because QERR_TOO_MANY_FILES is actually > not used today.
Let's kill it then. :) Are there any others? Paolo > Signed-off-by: Luiz Capitulino <lcapitul...@redhat.com> > --- > qerror.c | 4 ++-- > qerror.h | 4 ++-- > 2 files changed, 4 insertions(+), 4 deletions(-) > > diff --git a/qerror.c b/qerror.c > index 92c4eff..6c78759 100644 > --- a/qerror.c > +++ b/qerror.c > @@ -283,8 +283,8 @@ static const QErrorStringTable qerror_table[] = { > .desc = "Could not set password", > }, > { > - .error_fmt = QERR_TOO_MANY_FILES, > - .desc = "Too many open files", > + .error_fmt = QERR_TOO_MANY_FILES_SYS, > + .desc = "Too many open files in system", > }, > { > .error_fmt = QERR_UNDEFINED_ERROR, > diff --git a/qerror.h b/qerror.h > index b4c8758..fb7c642 100644 > --- a/qerror.h > +++ b/qerror.h > @@ -233,8 +233,8 @@ QError *qobject_to_qerror(const QObject *obj); > #define QERR_SET_PASSWD_FAILED \ > "{ 'class': 'SetPasswdFailed', 'data': {} }" > > -#define QERR_TOO_MANY_FILES \ > - "{ 'class': 'TooManyFiles', 'data': {} }" > +#define QERR_TOO_MANY_FILES_SYS \ > + "{ 'class': 'TooManyFilesInSystem', 'data': {} }" > > #define QERR_UNDEFINED_ERROR \ > "{ 'class': 'UndefinedError', 'data': {} }"