From 296c0cc66f5c8fe0617916a6e1faa1286146dae3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C5=99emysl=20Janouch?= Date: Sun, 9 Dec 2018 05:28:47 +0100 Subject: Fixes for previous commits ".." used to be hidden together with hidden files, and the symlink patch introduced a compiler warning. --- sdn.cpp | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/sdn.cpp b/sdn.cpp index 38ae63f..e4e7c6c 100644 --- a/sdn.cpp +++ b/sdn.cpp @@ -764,8 +764,9 @@ fun reload (const string &old_cwd) { while (auto f = readdir (dir)) { string name = f->d_name; // Two dots are for navigation but this ain't as useful - if (name != "." && (name != ".." || g.cwd != "/") - && (name[0] != '.' || g.show_hidden)) + if (name == ".") + continue; + if (name == ".." ? g.cwd != "/" : (name[0] != '.' || g.show_hidden)) g.entries.push_back (make_entry (f)); } closedir (dir); @@ -1003,7 +1004,7 @@ fun change_dir (const string &path) { explode_path (absolutize (g.cwd, path), in); // Paths with exactly two leading slashes may get special treatment - int startempty = 1; + size_t startempty = 1; if (in.size () >= 2 && in[1] == "" && (in.size () < 3 || in[2] != "")) startempty = 2; -- cgit v1.2.3