Mercurial > dropbear
diff cli-session.c @ 1387:e7f11ed5fe28
Use DROPBEAR_PATH_DEVNULL instead of undefined _PATH_DEVNULL
author | Ben Gardner <bgardner@wabtec.com> |
---|---|
date | Tue, 24 May 2016 17:34:10 -0500 |
parents | 750ec4ec4cbe |
children | e8f67918fdc9 |
line wrap: on
line diff
--- a/cli-session.c Thu May 12 23:47:35 2016 +0800 +++ b/cli-session.c Tue May 24 17:34:10 2016 -0500 @@ -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));