diff options
author | Matt Johnston <matt@ucc.asn.au> | 2014-10-21 22:33:49 +0800 |
---|---|---|
committer | Matt Johnston <matt@ucc.asn.au> | 2014-10-21 22:33:49 +0800 |
commit | 776d9087033b752a3dc82349e5d36cda3451de37 (patch) | |
tree | 33d5a771aaf6a88b6a50d0952d074579428d5887 /chansession.h | |
parent | 444b15889f8044d2ca158f76b70320a6bdcce064 (diff) |
Combine code for SSH_CONNECTION and SSH_CLIENT
Diffstat (limited to 'chansession.h')
-rw-r--r-- | chansession.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/chansession.h b/chansession.h index 50ba8f0..4078123 100644 --- a/chansession.h +++ b/chansession.h @@ -51,10 +51,10 @@ struct ChanSess { /* exit details */ struct exitinfo exit; - /* Used to set $SSH_CONNECTION in the child session. - Is only set temporarily before forking */ - char *connection_string; + /* These are only set temporarily before forking */ + /* Used to set $SSH_CONNECTION in the child session. */ + char *connection_string; /* Used to set $SSH_CLIENT in the child session. */ char *client_string; |