summaryrefslogtreecommitdiff
path: root/common-channel.c
diff options
context:
space:
mode:
authorGa?l PORTAY <gael.portay@gmail.com>2015-05-02 13:58:05 +0200
committerGa?l PORTAY <gael.portay@gmail.com>2015-05-02 13:58:05 +0200
commit0b6e6e525946ae5a5175b07e300f4c56c0111adb (patch)
treee71c5e8da70e7fe17d292d7c720475216a8aa939 /common-channel.c
parent826d30ea9b6124a8306feb5776e15e6f1c0d2598 (diff)
downloaddropbear-0b6e6e525946ae5a5175b07e300f4c56c0111adb.tar.gz
Turn start_send_channel_request()'s type argument into char *
Diffstat (limited to 'common-channel.c')
-rw-r--r--common-channel.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/common-channel.c b/common-channel.c
index a2ab985..6d69de9 100644
--- a/common-channel.c
+++ b/common-channel.c
@@ -1244,12 +1244,12 @@ struct Channel* get_any_ready_channel() {
}
void start_send_channel_request(struct Channel *channel,
- unsigned char *type) {
+ char *type) {
CHECKCLEARTOWRITE();
buf_putbyte(ses.writepayload, SSH_MSG_CHANNEL_REQUEST);
buf_putint(ses.writepayload, channel->remotechan);
- buf_putstring(ses.writepayload, type, strlen(type));
+ buf_putstring(ses.writepayload, (const unsigned char *) type, strlen(type));
}