=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/ssh/Attic/uuencode.c,v retrieving revision 1.15 retrieving revision 1.16 diff -u -r1.15 -r1.16 --- src/usr.bin/ssh/Attic/uuencode.c 2002/03/04 17:27:39 1.15 +++ src/usr.bin/ssh/Attic/uuencode.c 2002/09/09 14:54:15 1.16 @@ -23,7 +23,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: uuencode.c,v 1.15 2002/03/04 17:27:39 stevesk Exp $"); +RCSID("$OpenBSD: uuencode.c,v 1.16 2002/09/09 14:54:15 markus Exp $"); #include "xmalloc.h" #include "uuencode.h" @@ -60,7 +60,7 @@ void dump_base64(FILE *fp, u_char *data, u_int len) { - u_char *buf = xmalloc(2*len); + char *buf = xmalloc(2*len); int i, n; n = uuencode(data, len, buf, 2*len);