summaryrefslogtreecommitdiffstats
path: root/src/options.rs
diff options
context:
space:
mode:
authornwin <nwin@users.noreply.github.com>2015-02-22 13:44:55 +0100
committernwin <nwin@users.noreply.github.com>2015-02-22 13:44:55 +0100
commit227ddc9a0c735d5e2df39763e8bd750a4e6a1c25 (patch)
tree8e7bd7f09dde41c45100f282b5f9201ba2bcd5c9 /src/options.rs
parenta3460cf031abe8b6108ae075b451967a21a8b705 (diff)
Fix other platforms than macos.
Diffstat (limited to 'src/options.rs')
-rw-r--r--src/options.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/options.rs b/src/options.rs
index f239de9..8332bdf 100644
--- a/src/options.rs
+++ b/src/options.rs
@@ -226,7 +226,7 @@ impl View {
columns: try!(Columns::deduce(matches)),
header: matches.opt_present("header"),
tree: matches.opt_present("recurse"),
- ext_attr: matches.opt_present("extended"),
+ ext_attr: attr::feature_implemented() && matches.opt_present("extended"),
filter: filter,
};