diff options
author | Ben Gardner <bgardner@wabtec.com> | 2016-05-24 17:34:10 -0500 |
---|---|---|
committer | Ben Gardner <bgardner@wabtec.com> | 2016-05-25 09:52:23 -0500 |
commit | 100cbc5f3f41bebc03bf6838569845863c4c6649 (patch) | |
tree | f6b64e85c45eb3b1956d9ede17a5994ecf6e2ba4 | |
parent | e0c6e819c28a5c866cd3437599b8e979b23f0627 (diff) |
Use DROPBEAR_PATH_DEVNULL instead of undefined _PATH_DEVNULL
-rw-r--r-- | cli-session.c | 2 | ||||
-rw-r--r-- | compat.c | 2 | ||||
-rw-r--r-- | scpmisc.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/cli-session.c b/cli-session.c index d89416f..d8525ae 100644 --- a/cli-session.c +++ b/cli-session.c @@ -287,7 +287,7 @@ static void cli_sessionloop() { int devnull; /* keeping stdin open steals input from the terminal and is confusing, though stdout/stderr could be useful. */ - devnull = open(_PATH_DEVNULL, O_RDONLY); + devnull = open(DROPBEAR_PATH_DEVNULL, O_RDONLY); if (devnull < 0) { dropbear_exit("Opening /dev/null: %d %s", errno, strerror(errno)); @@ -177,7 +177,7 @@ int daemon(int nochdir, int noclose) { if (!nochdir) (void)chdir("/"); - if (!noclose && (fd = open(_PATH_DEVNULL, O_RDWR, 0)) != -1) { + if (!noclose && (fd = open(DROPBEAR_PATH_DEVNULL, O_RDWR, 0)) != -1) { (void)dup2(fd, STDIN_FILENO); (void)dup2(fd, STDOUT_FILENO); (void)dup2(fd, STDERR_FILENO); @@ -235,7 +235,7 @@ sanitise_stdfd(void) { int nullfd, dupfd; - if ((nullfd = dupfd = open(_PATH_DEVNULL, O_RDWR)) == -1) { + if ((nullfd = dupfd = open(DROPBEAR_PATH_DEVNULL, O_RDWR)) == -1) { fprintf(stderr, "Couldn't open /dev/null: %s", strerror(errno)); exit(1); } |