summaryrefslogtreecommitdiffstats
path: root/main.c
diff options
context:
space:
mode:
authorParide Legovini <pl@ninthfloor.org>2016-09-28 18:59:15 +0200
committerBert Münnich <ber.t@posteo.de>2016-09-28 19:27:48 +0200
commit86dc6860f9def64ad554a7c69eeae28203661e2c (patch)
treefc80e651e96c22990c941091985cd1e992403a1a /main.c
parentd69f39e3aad6a7c5fb110dabb068a7bbb2229750 (diff)
downloadnsxiv-86dc6860f9def64ad554a7c69eeae28203661e2c.tar.zst
Allow opening directories non-recursively
Diffstat (limited to 'main.c')
-rw-r--r--main.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/main.c b/main.c
index 5b41170..d1813a5 100644
--- a/main.c
+++ b/main.c
@@ -818,11 +818,7 @@ int main(int argc, char **argv)
if (!S_ISDIR(fstats.st_mode)) {
check_add_file(filename, true);
} else {
- if (!options->recursive) {
- error(0, 0, "%s: Is a directory", filename);
- continue;
- }
- if (r_opendir(&dir, filename) < 0) {
+ if (r_opendir(&dir, filename, options->recursive) < 0) {
error(0, errno, "%s", filename);
continue;
}