Commit 840ea249 authored by Thomas G. Lockhart's avatar Thomas G. Lockhart

Change call definition for isreltime().

parent 3c2d74d2
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/commands/Attic/purge.c,v 1.4 1997/01/10 20:17:17 momjian Exp $ * $Header: /cvsroot/pgsql/src/backend/commands/Attic/purge.c,v 1.5 1997/07/29 16:19:26 thomas Exp $
* *
* Note: * Note:
* XXX There are many instances of int32 instead of ...Time. These * XXX There are many instances of int32 instead of ...Time. These
...@@ -85,7 +85,7 @@ RelationPurge(char *relationName, ...@@ -85,7 +85,7 @@ RelationPurge(char *relationName,
#endif /* defined(PURGEDEBUG) */ #endif /* defined(PURGEDEBUG) */
if (PointerIsValid(relativeTimeString)) { if (PointerIsValid(relativeTimeString)) {
if (isreltime(relativeTimeString, NULL, NULL, NULL) != 1) { if (isreltime(relativeTimeString) != 1) {
elog(WARN, "%s: bad relative time string \"%s\"", elog(WARN, "%s: bad relative time string \"%s\"",
cmdname, relativeTimeString); cmdname, relativeTimeString);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment