=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/ssh/Attic/uuencode.c,v retrieving revision 1.15 retrieving revision 1.15.2.1 diff -u -r1.15 -r1.15.2.1 --- src/usr.bin/ssh/Attic/uuencode.c 2002/03/04 17:27:39 1.15 +++ src/usr.bin/ssh/Attic/uuencode.c 2002/10/11 14:51:53 1.15.2.1 @@ -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.15.2.1 2002/10/11 14:51:53 miod 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);