diff options
author | Damien Miller <djm@mindrot.org> | 2002-09-12 01:49:15 +0200 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2002-09-12 01:49:15 +0200 |
commit | a10f56151b24ce677c2c93440d723597410229d5 (patch) | |
tree | f645cbc8397d2f97472ed058ca680b6600535ec0 /monitor_wrap.c | |
parent | - itojun@cvs.openbsd.org 2002/09/09 06:48:06 (diff) | |
download | openssh-a10f56151b24ce677c2c93440d723597410229d5.tar.xz openssh-a10f56151b24ce677c2c93440d723597410229d5.zip |
- markus@cvs.openbsd.org 2002/09/09 14:54:15
[channels.c kex.h key.c monitor.c monitor_wrap.c radix.c uuencode.c]
signed vs unsigned from -pedantic; ok henning@
Diffstat (limited to 'monitor_wrap.c')
-rw-r--r-- | monitor_wrap.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/monitor_wrap.c b/monitor_wrap.c index ed1c50ff9..5d11a6593 100644 --- a/monitor_wrap.c +++ b/monitor_wrap.c @@ -25,7 +25,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: monitor_wrap.c,v 1.17 2002/09/09 06:48:06 itojun Exp $"); +RCSID("$OpenBSD: monitor_wrap.c,v 1.18 2002/09/09 14:54:15 markus Exp $"); #include <openssl/bn.h> #include <openssl/dh.h> @@ -599,7 +599,7 @@ int mm_pty_allocate(int *ptyfd, int *ttyfd, char *namebuf, int namebuflen) { Buffer m; - u_char *p; + char *p; int success = 0; buffer_init(&m); |