summaryrefslogtreecommitdiffhomepage
path: root/chansession.h
diff options
context:
space:
mode:
authorMatt Johnston <matt@ucc.asn.au>2020-03-14 23:28:18 +0800
committerMatt Johnston <matt@ucc.asn.au>2020-03-14 23:28:18 +0800
commite35d0784a83ecb936c27599257d9e42b3dedd411 (patch)
treee4dc12a453d87a349216515703ce632166b16cdd /chansession.h
parentcc6fa57a410a786804cee69c97e633f45304c88b (diff)
Set SSH_ORIGINAL_COMMAND for "dropbear -c" too, fix build without
DROPBEAR_SVR_PUBKEY_OPTIONS
Diffstat (limited to 'chansession.h')
-rw-r--r--chansession.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/chansession.h b/chansession.h
index fa429d5..cf4fba3 100644
--- a/chansession.h
+++ b/chansession.h
@@ -41,6 +41,9 @@ struct ChanSess {
char * cmd; /* command to exec */
pid_t pid; /* child process pid */
+ /* command that was sent by the client, if authorized_keys command= or
+ dropbear -c was used */
+ char *original_command;
/* pty details */
int master; /* the master terminal fd*/
@@ -72,10 +75,6 @@ struct ChanSess {
char * agentfile;
char * agentdir;
#endif
-
-#if DROPBEAR_SVR_PUBKEY_OPTIONS_BUILT
- char *original_command;
-#endif
};
struct ChildPid {