Turn ChanSess's tty and term attributes into char *

This commit is contained in:
Gaël PORTAY
2015-05-02 16:01:13 +02:00
parent 7928d83b02
commit 9f97511356
2 changed files with 4 additions and 4 deletions

View File

@@ -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;