diff options
Diffstat (limited to 'crypto/openssh/uuencode.c')
| -rw-r--r-- | crypto/openssh/uuencode.c | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/crypto/openssh/uuencode.c b/crypto/openssh/uuencode.c index 1be975a6c4e4..0074cd89070e 100644 --- a/crypto/openssh/uuencode.c +++ b/crypto/openssh/uuencode.c @@ -1,5 +1,3 @@ -/* $OpenBSD: uuencode.c,v 1.12 2001/03/01 02:27:18 deraadt Exp $ */ - /* * Copyright (c) 2000 Markus Friedl. All rights reserved. * @@ -25,13 +23,13 @@ */ #include "includes.h" +RCSID("$OpenBSD: uuencode.c,v 1.15 2002/03/04 17:27:39 stevesk Exp $"); + #include "xmalloc.h" #include "uuencode.h" #include <resolv.h> -RCSID("$OpenBSD: uuencode.c,v 1.12 2001/03/01 02:27:18 deraadt Exp $"); - int uuencode(u_char *src, u_int srclength, char *target, size_t targsize) @@ -52,7 +50,7 @@ uudecode(const char *src, u_char *target, size_t targsize) ; 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 @@ uudecode(const char *src, u_char *target, size_t targsize) } 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; |
