From bfead635e4e5ee85c37f7998ad6ac02b838ffed3 Mon Sep 17 00:00:00 2001 From: Yorhel Date: Tue, 28 Sep 2021 17:56:06 +0200 Subject: [PATCH] Don't enable -x by default That was an oversight. Especially useless when there's no option to disable -x. --- src/main.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.zig b/src/main.zig index 46564a9..783f304 100644 --- a/src/main.zig +++ b/src/main.zig @@ -41,7 +41,7 @@ pub const config = struct { pub const SortCol = enum { name, blocks, size, items, mtime }; pub const SortOrder = enum { asc, desc }; - pub var same_fs: bool = true; + pub var same_fs: bool = false; pub var extended: bool = false; pub var follow_symlinks: bool = false; pub var exclude_caches: bool = false;