Browse Source

Default to cwd if not argument is provided

master
sin 11 years ago
parent
commit
5999cef396
1 changed files with 10 additions and 1 deletions
  1. +10
    -1
      noice.c

+ 10
- 1
noice.c View File

@@ -6,6 +6,7 @@
#include <dirent.h> #include <dirent.h>
#include <curses.h> #include <curses.h>
#include <libgen.h> #include <libgen.h>
#include <limits.h>
#include <locale.h> #include <locale.h>
#include <regex.h> #include <regex.h>
#include <stdlib.h> #include <stdlib.h>
@@ -613,9 +614,17 @@ out:
int int
main(int argc, char *argv[]) main(int argc, char *argv[])
{ {
char *ipath = argv[1] != NULL ? argv[1] : "/";
char cwd[PATH_MAX], *ipath;
char *ifilter = "^[^.].*"; /* Hide dotfiles */ char *ifilter = "^[^.].*"; /* Hide dotfiles */


if (argv[1] != NULL) {
ipath = argv[1];
} else {
ipath = getcwd(cwd, sizeof(cwd));
if (ipath == NULL)
ipath = "/";
}

/* Test initial path */ /* Test initial path */
if (!testopendir(ipath)) if (!testopendir(ipath))
printerr(1, ipath); printerr(1, ipath);


Loading…
Cancel
Save