diff options
author | jp161948 <none@none> | 2007-10-12 03:45:44 -0700 |
---|---|---|
committer | jp161948 <none@none> | 2007-10-12 03:45:44 -0700 |
commit | 442d23f49355a5d0694c758975be57af39f91a61 (patch) | |
tree | e23b7adde8dcbf0470e4de6883cfbef0bdcfd165 /usr/src/cmd/ssh/libssh/common/uuencode.c | |
parent | d54f1b9de6449e2955636f55ecfb3d50e13a0d98 (diff) | |
download | illumos-gate-442d23f49355a5d0694c758975be57af39f91a61.tar.gz |
PSARC/2007/034 ssh/sshd resync with OpenSSH
6324633 OpenSSH HashKnownHosts functionality desired for SunSSH
Diffstat (limited to 'usr/src/cmd/ssh/libssh/common/uuencode.c')
-rw-r--r-- | usr/src/cmd/ssh/libssh/common/uuencode.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr/src/cmd/ssh/libssh/common/uuencode.c b/usr/src/cmd/ssh/libssh/common/uuencode.c index 30547a0c3a..432f5c4369 100644 --- a/usr/src/cmd/ssh/libssh/common/uuencode.c +++ b/usr/src/cmd/ssh/libssh/common/uuencode.c @@ -52,7 +52,7 @@ uudecode(const char *src, u_char *target, size_t targsize) ; /* and remove trailing whitespace because __b64_pton needs this */ *p = '\0'; - len = __b64_pton(encoded, target, targsize); + len = __b64_pton((u_char *) encoded, target, targsize); xfree(encoded); return len; } |