Arun Prakash Jana 5 years ago
parent
commit
9e41c39138
No known key found for this signature in database GPG Key ID: A75979F35C080412
1 changed files with 4 additions and 6 deletions
  1. +4
    -6
      src/nnn.c

+ 4
- 6
src/nnn.c View File

@@ -4731,17 +4731,15 @@ static void notify_fifo()
} }
} }


static char *name = NULL; static struct entry lastentry = {0};
static time_t t = {0};


if (dents[cur].name == name && dents[cur].t == t) if (!memcmp(&lastentry, &dents[cur], sizeof(struct entry)))
return; return;


name = dents[cur].name; lastentry = dents[cur];
t = dents[cur].t;


char path[PATH_MAX]; char path[PATH_MAX];
size_t len = mkpath(g_ctx[cfg.curctx].c_path, ndents ? name : "", path); size_t len = mkpath(g_ctx[cfg.curctx].c_path, ndents ? dents[cur].name : "", path);


path[len - 1] = '\n'; path[len - 1] = '\n';




||||||
x
 
000:0
Loading…
Cancel
Save