aboutsummaryrefslogtreecommitdiff
path: root/src/backend/utils/adt/datetime.c
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2001-12-30 23:09:42 +0000
committerTom Lane <tgl@sss.pgh.pa.us>2001-12-30 23:09:42 +0000
commitee051baeac9dce2dbfd5da50da21ae425b548c43 (patch)
treee1e24cb9f15642b9359eaf9bf6f8940bf9f76efc /src/backend/utils/adt/datetime.c
parente7d9a6bf630e8784fc1723d138e4e4e973550017 (diff)
downloadpostgresql-ee051baeac9dce2dbfd5da50da21ae425b548c43.tar.gz
postgresql-ee051baeac9dce2dbfd5da50da21ae425b548c43.zip
Make sure that all <ctype.h> routines are called with unsigned char
values; it's not portable to call them with signed chars. I recall doing this for the last release, but a few more uncasted calls have snuck in.
Diffstat (limited to 'src/backend/utils/adt/datetime.c')
-rw-r--r--src/backend/utils/adt/datetime.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/utils/adt/datetime.c b/src/backend/utils/adt/datetime.c
index 674eaeb91a1..49e93abe99a 100644
--- a/src/backend/utils/adt/datetime.c
+++ b/src/backend/utils/adt/datetime.c
@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/utils/adt/datetime.c,v 1.85 2001/12/29 21:28:18 momjian Exp $
+ * $Header: /cvsroot/pgsql/src/backend/utils/adt/datetime.c,v 1.86 2001/12/30 23:09:41 tgl Exp $
*
*-------------------------------------------------------------------------
*/
@@ -959,7 +959,7 @@ DecodeDateTime(char **field, int *ftype, int nf,
if (tzp == NULL)
return -1;
- if (isdigit(*field[i]) || ptype != 0)
+ if (isdigit((unsigned char) *field[i]) || ptype != 0)
{
char *cp;
@@ -1573,7 +1573,7 @@ DecodeTimeOnly(char **field, int *ftype, int nf,
/* otherwise, this is a time and/or time zone */
else
{
- if (isdigit(*field[i]))
+ if (isdigit((unsigned char) *field[i]))
{
char *cp;