diff options
author | Gaël PORTAY <gael.portay@gmail.com> | 2015-05-02 16:01:13 +0200 |
---|---|---|
committer | Gaël PORTAY <gael.portay@gmail.com> | 2015-05-05 20:39:14 +0200 |
commit | 9f975113564ba06a521aab33f0ab30206ab6d7c8 (patch) | |
tree | f9f1b82bbd8d55af06c4f1b04c4b0ffbfafbb768 /chansession.h | |
parent | 7928d83b02f0d2fb1f7d5ac886baf3724a9561a3 (diff) |
Turn ChanSess's tty and term attributes into char *
Diffstat (limited to 'chansession.h')
-rw-r--r-- | chansession.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chansession.h b/chansession.h index 3dd58ac..66f5504 100644 --- a/chansession.h +++ b/chansession.h @@ -45,8 +45,8 @@ struct ChanSess { /* pty details */ int master; /* the master terminal fd*/ int slave; - unsigned char * tty; - unsigned char * term; + char * tty; + char * term; /* exit details */ struct exitinfo exit; |