=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/ssh/Attic/uuencode.c,v retrieving revision 1.7.2.5 retrieving revision 1.7.2.6 diff -u -r1.7.2.5 -r1.7.2.6 --- src/usr.bin/ssh/Attic/uuencode.c 2001/09/27 00:15:43 1.7.2.5 +++ src/usr.bin/ssh/Attic/uuencode.c 2002/03/08 17:04:44 1.7.2.6 @@ -1,5 +1,3 @@ -/* $OpenBSD: uuencode.c,v 1.7.2.5 2001/09/27 00:15:43 miod Exp $ */ - /* * Copyright (c) 2000 Markus Friedl. All rights reserved. * @@ -25,13 +23,13 @@ */ #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.7.2.5 2001/09/27 00:15:43 miod Exp $"); - int uuencode(u_char *src, u_int srclength, char *target, size_t targsize) @@ -52,7 +50,7 @@ ; for (; *p != '\0' && *p != ' ' && *p != '\t'; p++) ; - /* and remote trailing whitespace because __b64_pton needs this */ + /* and remove trailing whitespace because __b64_pton needs this */ *p = '\0'; len = __b64_pton(encoded, target, targsize); xfree(encoded); @@ -60,7 +58,7 @@ } void -dump_base64(FILE *fp, u_char *data, int len) +dump_base64(FILE *fp, u_char *data, u_int len) { u_char *buf = xmalloc(2*len); int i, n;