summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--pw/psdate.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/pw/psdate.c b/pw/psdate.c
index 9b9cf78..5bdd3c9 100644
--- a/pw/psdate.c
+++ b/pw/psdate.c
@@ -26,7 +26,7 @@
#ifndef lint
static const char rcsid[] =
- "$Id$";
+ "$Id: psdate.c,v 1.4 1997/10/10 06:23:32 charnier Exp $";
#endif /* not lint */
#include <stdio.h>
@@ -180,8 +180,7 @@ parse_date(time_t dt, char const * str)
++str;
if (numerics(str)) {
- val = strtol(str, &p, 0);
- dt = val ? val : dt;
+ dt = strtol(str, &p, 0);
} else if (*str == '+' || *str == '-') {
val = strtol(str, &p, 0);
switch (*p) {