]> git.cameronkatri.com Git - pw-darwin.git/blobdiff - pw/psdate.c
Revert the libcrypt/libmd stuff back to how it was. This should not have
[pw-darwin.git] / pw / psdate.c
index 9b9cf78bc9fde534d46ff2baa5285aed376d4e7e..f8b1fce894b455565fece97d1594213961aadfaa 100644 (file)
@@ -26,7 +26,7 @@
 
 #ifndef lint
 static const char rcsid[] =
-       "$Id$";
+  "$FreeBSD$";
 #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) {