diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2001-11-19 09:05:02 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2001-11-19 09:05:02 +0000 |
commit | 5e86d226e46cf4e0efe281cfda3c1e8d8171dffd (patch) | |
tree | c66c47478d153358db41dbe169e9fb3ab9252b2b /src/backend/utils/adt/datetime.c | |
parent | 5590d5fe99d88c1a9d47852e6be36aa590401f01 (diff) | |
download | postgresql-5e86d226e46cf4e0efe281cfda3c1e8d8171dffd.tar.gz postgresql-5e86d226e46cf4e0efe281cfda3c1e8d8171dffd.zip |
Grammatical and spelling fixes.
Diffstat (limited to 'src/backend/utils/adt/datetime.c')
-rw-r--r-- | src/backend/utils/adt/datetime.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/utils/adt/datetime.c b/src/backend/utils/adt/datetime.c index 66562f6d691..a6cb8c5695d 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.78 2001/11/06 16:29:51 thomas Exp $ + * $Header: /cvsroot/pgsql/src/backend/utils/adt/datetime.c,v 1.79 2001/11/19 09:05:01 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -953,7 +953,7 @@ DecodeDateTime(char **field, int *ftype, int nf, if (tm->tm_year > 0) tm->tm_year = -(tm->tm_year - 1); else - elog(ERROR, "Inconsistant use of year %04d and 'BC'", tm->tm_year); + elog(ERROR, "Inconsistent use of year %04d and 'BC'", tm->tm_year); } else if (is2digits) { @@ -1405,7 +1405,7 @@ DecodeDate(char *str, int fmask, int *tmask, struct tm * tm) if (tm->tm_year > 0) tm->tm_year = -(tm->tm_year - 1); else - elog(ERROR, "Inconsistant use of year %04d and 'BC'", tm->tm_year); + elog(ERROR, "Inconsistent use of year %04d and 'BC'", tm->tm_year); } else if (is2digits) { |