touch: accept and ignore -f

This commit is contained in:
Denis Vlasenko 2007-11-28 19:25:32 +00:00
parent 35ff74676b
commit c253778de9

View File

@ -26,8 +26,9 @@ int touch_main(int argc, char **argv)
{
int fd;
int status = EXIT_SUCCESS;
int flags = getopt32(argv, "c");
int flags = getopt32(argv, "cf");
flags &= 1; /* ignoring -f (BSD compat thingy) */
argv += optind;
if (!*argv) {