diff options
author | Jim Meyering <jim@meyering.net> | 1996-11-30 04:08:02 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1996-11-30 04:08:02 +0000 |
commit | 7e9e29f3923ef530b172a5ca315104b83ba3d5dd (patch) | |
tree | 446f3db872951224613fc446d61f53c40de2e5e7 /src | |
parent | 28f8f53bb6603ab143f9fc67a9192f864fdf54d1 (diff) | |
download | coreutils-7e9e29f3923ef530b172a5ca315104b83ba3d5dd.tar.xz |
(main): Accept -F as a synonym for -t for compatibility
with Solaris. From Peter Eriksson.
Diffstat (limited to 'src')
-rw-r--r-- | src/df.c | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -612,7 +612,7 @@ main (int argc, char **argv) posix_format = 0; exit_status = 0; - while ((i = getopt_long (argc, argv, "aihkmPTt:vx:", long_options, NULL)) + while ((i = getopt_long (argc, argv, "aiF:hkmPTt:vx:", long_options, NULL)) != EOF) { switch (i) @@ -652,9 +652,13 @@ main (int argc, char **argv) case 130: require_sync = 0; break; + + case 'F': + /* Accept -F as a synonym for -t for compatibility with Solaris. */ case 't': add_fs_type (optarg); break; + case 'v': /* For SysV compatibility. */ /* ignore */ break; |