summaryrefslogtreecommitdiffhomepage
path: root/chansession.h
diff options
context:
space:
mode:
authorGaël PORTAY <gael.portay@gmail.com>2015-05-02 16:01:13 +0200
committerGaël PORTAY <gael.portay@gmail.com>2015-05-05 20:39:14 +0200
commit9f975113564ba06a521aab33f0ab30206ab6d7c8 (patch)
treef9f1b82bbd8d55af06c4f1b04c4b0ffbfafbb768 /chansession.h
parent7928d83b02f0d2fb1f7d5ac886baf3724a9561a3 (diff)
Turn ChanSess's tty and term attributes into char *
Diffstat (limited to 'chansession.h')
-rw-r--r--chansession.h4
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;