(main): Fix POSIX-conformance bug: "touch --

MMDDhhmm file" must be treated like "touch MMDDhhmm file" when
conforming to pre-2001 POSIX.
This commit is contained in:
Paul Eggert
2004-09-07 06:21:46 +00:00
parent d1d35fc729
commit f786a91cd3
+1 -2
View File
@@ -373,8 +373,7 @@ main (int argc, char **argv)
/* The obsolete `MMDDhhmm[YY]' form is valid IFF there are
two or more non-option arguments. */
if (!date_set && 2 <= argc - optind && !STREQ (argv[optind - 1], "--")
&& posix2_version () < 200112)
if (!date_set && 2 <= argc - optind && posix2_version () < 200112)
{
if (posixtime (&newtime[0].tv_sec, argv[optind], PDS_TRAILING_YEAR))
{