diff options
author | Matt Johnston <matt@ucc.asn.au> | 2007-02-16 14:42:08 +0000 |
---|---|---|
committer | Matt Johnston <matt@ucc.asn.au> | 2007-02-16 14:42:08 +0000 |
commit | 7f12251fbb2acefac04e13a7c6a95ca4dd4b5578 (patch) | |
tree | 90cd5a5a89b66f3ebcd55ba047d78159348fe27e /cli-session.c | |
parent | 41fd735d4b7918b3285ed40c8c5756ef07a70f04 (diff) |
Fix for -pedantic -ansi compilation, change // to /**/, plus some signedness
and trailing-comma-in-array issues
--HG--
extra : convert_revision : c22be8b8f570b48e9662dac32c7b3e7148a42206
Diffstat (limited to 'cli-session.c')
-rw-r--r-- | cli-session.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cli-session.c b/cli-session.c index be36bec..360187f 100644 --- a/cli-session.c +++ b/cli-session.c @@ -215,8 +215,8 @@ static void cli_sessionloop() { if (cli_opts.backgrounded) { int devnull; - // keeping stdin open steals input from the terminal and - // is confusing, though stdout/stderr could be useful. + /* keeping stdin open steals input from the terminal and + is confusing, though stdout/stderr could be useful. */ devnull = open(_PATH_DEVNULL, O_RDONLY); if (devnull < 0) { dropbear_exit("opening /dev/null: %d %s", |