Skip to content

Commit 840ea24

Browse files
author
Thomas G. Lockhart
committed
Change call definition for isreltime().
1 parent 3c2d74d commit 840ea24

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/backend/commands/purge.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
*
88
*
99
* IDENTIFICATION
10-
* $Header: /cvsroot/pgsql/src/backend/commands/Attic/purge.c,v 1.4 1997/01/10 20:17:17 momjian Exp $
10+
* $Header: /cvsroot/pgsql/src/backend/commands/Attic/purge.c,v 1.5 1997/07/29 16:19:26 thomas Exp $
1111
*
1212
* Note:
1313
* XXX There are many instances of int32 instead of ...Time. These
@@ -85,7 +85,7 @@ RelationPurge(char *relationName,
8585
#endif /* defined(PURGEDEBUG) */
8686

8787
if (PointerIsValid(relativeTimeString)) {
88-
if (isreltime(relativeTimeString, NULL, NULL, NULL) != 1) {
88+
if (isreltime(relativeTimeString) != 1) {
8989
elog(WARN, "%s: bad relative time string \"%s\"",
9090
cmdname, relativeTimeString);
9191
}

0 commit comments

Comments
 (0)