comparison chansession.h @ 1120:391bb7d560c6

Merge branch 'fix-pointer-sign-warnings' into fix-warnings
author Gaël PORTAY <gael.portay@gmail.com>
date Tue, 05 May 2015 20:42:38 +0200
parents 5eb00b6b9040
children 9169e4e7cbee
comparison
equal deleted inserted replaced
1093:aae71c5f7d5b 1120:391bb7d560c6
37 int exitcore; 37 int exitcore;
38 }; 38 };
39 39
40 struct ChanSess { 40 struct ChanSess {
41 41
42 unsigned char * cmd; /* command to exec */ 42 char * cmd; /* command to exec */
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