comparison chansession.h @ 1102:ae63de5caf81

Turn ChanSess's tty and term attributes into char *
author Gaël PORTAY <gael.portay@gmail.com>
date Sat, 02 May 2015 16:01:13 +0200
parents deed0571cacc
children 5eb00b6b9040
comparison
equal deleted inserted replaced
1101:94ff5316980f 1102:ae63de5caf81
43 pid_t pid; /* child process pid */ 43 pid_t pid; /* child process pid */
44 44
45 /* pty details */ 45 /* pty details */
46 int master; /* the master terminal fd*/ 46 int master; /* the master terminal fd*/
47 int slave; 47 int slave;
48 unsigned char * tty; 48 char * tty;
49 unsigned char * term; 49 char * term;
50 50
51 /* exit details */ 51 /* exit details */
52 struct exitinfo exit; 52 struct exitinfo exit;
53 53
54 54