diff options
-rw-r--r-- | coreutils/touch.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/coreutils/touch.c b/coreutils/touch.c index 1b83dc44c..3fe8b64ad 100644 --- a/coreutils/touch.c +++ b/coreutils/touch.c @@ -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) { |