]> 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 14b7340c0f067cb557ee8599dede8b88047d623c..f8b1fce894b455565fece97d1594213961aadfaa 100644 (file)
  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  * SUCH DAMAGE.
- *
- *     $Id$
  */
 
+#ifndef lint
+static const char rcsid[] =
+  "$FreeBSD$";
+#endif /* not lint */
+
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
@@ -177,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) {