From: Jim Meyering Date: Sat, 3 Oct 1998 17:18:52 +0000 (+0000) Subject: (main): Update to use new version of posixtime. X-Git-Tag: FILEUTILS-4_0-b2~22 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2ebff08169c14e2103388d86359fbac61a63459b;p=thirdparty%2Fcoreutils.git (main): Update to use new version of posixtime. --- diff --git a/src/date.c b/src/date.c index 75459684ca..bf5b565b46 100644 --- a/src/date.c +++ b/src/date.c @@ -27,6 +27,7 @@ #include "getline.h" #include "error.h" #include "getdate.h" +#include "posixtm.h" #ifndef STDC_HEADERS size_t strftime (); @@ -37,7 +38,6 @@ int putenv (); int stime (); char *xstrdup (); -time_t posixtime (); static void show_date PARAMS ((const char *format, time_t when)); static void usage PARAMS ((int status)); @@ -307,7 +307,8 @@ argument must be a format string beginning with `+'."), given in the POSIX-format. */ set_date = 1; datestr = argv[optind]; - when = posixtime (datestr); + when = posixtime (datestr, + PDS_TRAILING_YEAR | PDS_CENTURY | PDS_SECONDS); format = NULL; } else