diff cli-session.c @ 1388:271c57aa3da5

Merge pull request #31 from bengardner/PATH_DEVNULL Use DROPBEAR_PATH_DEVNULL instead of undefined _PATH_DEVNULL
author Matt Johnston <matt@ucc.asn.au>
date Fri, 02 Jun 2017 22:57:09 +0800
parents e7f11ed5fe28
children e8f67918fdc9
line wrap: on
line diff
--- a/cli-session.c	Sat May 20 10:27:29 2017 +0800
+++ b/cli-session.c	Fri Jun 02 22:57:09 2017 +0800
@@ -287,7 +287,7 @@
 				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));