=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/ssh/Attic/uuencode.c,v retrieving revision 1.7.2.6 retrieving revision 1.8 diff -u -r1.7.2.6 -r1.8 --- src/usr.bin/ssh/Attic/uuencode.c 2002/03/08 17:04:44 1.7.2.6 +++ src/usr.bin/ssh/Attic/uuencode.c 2000/12/19 23:17:59 1.8 @@ -1,3 +1,5 @@ +/* $OpenBSD: uuencode.c,v 1.8 2000/12/19 23:17:59 markus Exp $ */ + /* * Copyright (c) 2000 Markus Friedl. All rights reserved. * @@ -23,13 +25,12 @@ */ #include "includes.h" -RCSID("$OpenBSD: uuencode.c,v 1.7.2.6 2002/03/08 17:04:44 brad Exp $"); - #include "xmalloc.h" -#include "uuencode.h" #include +RCSID("$OpenBSD: uuencode.c,v 1.8 2000/12/19 23:17:59 markus Exp $"); + int uuencode(u_char *src, u_int srclength, char *target, size_t targsize) @@ -50,7 +51,7 @@ ; for (; *p != '\0' && *p != ' ' && *p != '\t'; p++) ; - /* and remove trailing whitespace because __b64_pton needs this */ + /* and remote trailing whitespace because __b64_pton needs this */ *p = '\0'; len = __b64_pton(encoded, target, targsize); xfree(encoded); @@ -58,11 +59,10 @@ } void -dump_base64(FILE *fp, u_char *data, u_int len) +dump_base64(FILE *fp, u_char *data, int len) { u_char *buf = xmalloc(2*len); int i, n; - n = uuencode(data, len, buf, 2*len); for (i = 0; i < n; i++) { fprintf(fp, "%c", buf[i]);