From c74609f805beafd948b59379fe073ee5cb0acc6a Mon Sep 17 00:00:00 2001 From: ewt Date: Sun, 2 Nov 1997 16:45:17 +0000 Subject: [PATCH] added error strings for BADNUMBER and OVERFLOW errors CVS patchset: 1888 CVS date: 1997/11/02 16:45:17 --- popt/popt.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/popt/popt.c b/popt/popt.c index 57b0041..ead28da 100644 --- a/popt/popt.c +++ b/popt/popt.c @@ -582,6 +582,10 @@ const char * poptStrerror(const int error) { return "aliases nested too deeply"; case POPT_ERROR_BADQUOTE: return "error in paramter quoting"; + case POPT_ERROR_BADNUMBER: + return "invalid numeric value"; + case POPT_ERROR_OVERFLOW: + return "number too large or too small"; case POPT_ERROR_ERRNO: return strerror(errno); default: -- 2.7.4