Sfoglia il codice sorgente

Fix: can't go to parent if only dir name specified

Invoking nnn with:

nnn dir
nnn ./dir
nnn dir

wouldn't allow user to navigate to parent directory.
master
Arun Prakash Jana 8 anni fa
parent
commit
86c3f75512
Non sono state trovate chiavi note per questa firma nel database ID Chiave GPG: A75979F35C080412
1 ha cambiato i file con 5 aggiunte e 1 eliminazioni
  1. +5
    -1
      nnn.c

+ 5
- 1
nnn.c Vedi File

@@ -952,7 +952,11 @@ main(int argc, char *argv[])
printptr = &printent;

if (argv[1] != NULL) {
ipath = argv[1];
ipath = realpath(argv[1], cwd);
if (!ipath) {
fprintf(stderr, "%s: no such dir\n", argv[1]);
exit(1);
}
} else {
ipath = getcwd(cwd, sizeof(cwd));
if (ipath == NULL)


Loading…
Annulla
Salva