From e3e80849a6980f675289195225542c35154f756f Mon Sep 17 00:00:00 2001 From: Rob Landley Date: Tue, 10 Sep 2013 01:01:35 -0500 Subject: Remove two unused functions and shrink another. --- lib/pending.c | 33 +++++---------------------------- 1 file changed, 5 insertions(+), 28 deletions(-) (limited to 'lib/pending.c') diff --git a/lib/pending.c b/lib/pending.c index a06912ee..eda45b40 100644 --- a/lib/pending.c +++ b/lib/pending.c @@ -38,38 +38,15 @@ unsigned long get_int_value(const char *numstr, unsigned long lowrange, unsigned { unsigned long rvalue = 0; char *ptr; - if(*numstr == '-' || *numstr == '+' || isspace(*numstr)) perror_exit("invalid number '%s'", numstr); + + if (!isdigit(*numstr)) perror_exit("bad number '%s'", numstr); errno = 0; rvalue = strtoul(numstr, &ptr, 10); - if(errno || numstr == ptr) perror_exit("invalid number '%s'", numstr); - if(*ptr) perror_exit("invalid number '%s'", numstr); - if(rvalue >= lowrange && rvalue <= highrange) return rvalue; - else { - perror_exit("invalid number '%s'", numstr); - return rvalue; //Not reachable; to avoid waring message. - } -} -/* - * strcat to mallocated buffer - * reallocate if need be - */ -char *astrcat (char *x, char *y) { - char *z; - z = x; - x = realloc (x, (x ? strlen (x) : 0) + strlen (y) + 1); - if (!x) return 0; - (z ? strcat : strcpy) (x, y); - return x; -} + if (errno || numstr == ptr || *ptr || rvalue < lowrange || rvalue > highrange) + perror_exit("bad number '%s'", numstr); -/* - * astrcat, but die on failure - */ -char *xastrcat (char *x, char *y) { - x = astrcat (x, y); - if (!x) error_exit ("xastrcat"); - return x; + return rvalue; } void daemonize(void) -- cgit v1.2.3