]> andersk Git - gssapi-openssh.git/blobdiff - openssh/uuencode.c
o Merge changes from OPENSSH_3_5P1_GSI_20021018.
[gssapi-openssh.git] / openssh / uuencode.c
index 89fcb08152d744fd856128a4904d2f18d3272d5c..21eaf4d3f43ee0a333ca5d793234b5b498f93285 100644 (file)
  */
 
 #include "includes.h"
+RCSID("$OpenBSD: uuencode.c,v 1.16 2002/09/09 14:54:15 markus Exp $");
+
 #include "xmalloc.h"
 #include "uuencode.h"
-RCSID("$OpenBSD: uuencode.c,v 1.15 2002/03/04 17:27:39 stevesk Exp $");
 
 int
 uuencode(u_char *src, u_int srclength,
@@ -57,7 +58,7 @@ uudecode(const char *src, u_char *target, size_t targsize)
 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);
This page took 0.033554 seconds and 4 git commands to generate.