X-Git-Url: https://gapil.gnulinux.it/gitweb/?p=gapil.git;a=blobdiff_plain;f=sources%2FErrCode.c;h=d8b6906bfeec6ae00d129f75859f69065b4b8f09;hp=5106885503a25e7b86a5e1767e30901d2aa33f91;hb=f3bb4dd6dfe5a8d568dca64c56c870508090c168;hpb=54d27b07aee6d293931ee274a3ede927f517f2cf diff --git a/sources/ErrCode.c b/sources/ErrCode.c index 5106885..d8b6906 100644 --- a/sources/ErrCode.c +++ b/sources/ErrCode.c @@ -26,7 +26,7 @@ * * Usage: errcode -h give all info's * - * $Id: ErrCode.c,v 1.2 2001/09/09 22:45:34 piccardi Exp $ + * $Id: ErrCode.c,v 1.8 2003/07/27 14:28:19 piccardi Exp $ * ****************************************************************/ /* @@ -37,6 +37,7 @@ #include /* unix standard library */ #include /* standard I/O library */ #include /* string functions */ +#include /* system limits values */ /* Help printing routine */ void usage(void); @@ -217,7 +218,17 @@ int main(int argc, char *argv[]) if (optind == argc) { usage(); } - err = atoi(argv[optind]); + /* convert string to number */ + err = strtol(argv[optind], NULL, 10); + /* testing error condition on conversion */ + if (err==LONG_MIN) { + perror("Underflow on error code"); + return 1; + } else if (err==LONG_MIN) { + perror("Overflow on error code"); + return 1; + } + /* conversion is fine */ if (message) { printf("Error message for %d is %s\n", err, strerror(err)); } @@ -236,7 +247,7 @@ int main(int argc, char *argv[]) void usage(void) { printf("Print error code message or macro label \n"); printf("Usage:\n"); - printf(" daytime [-h] [-l] [-m] error code \n"); + printf(" errcode [-h] [-l] [-m] error code \n"); printf(" -m print error messages\n"); printf(" -l print error code label\n"); printf(" -h print this help\n");