[uuencode.c]
     typo
This commit is contained in:
Damien Miller 2006-03-26 14:30:33 +11:00
Родитель 51096383e9
Коммит b3cdc220c4
2 изменённых файлов: 6 добавлений и 3 удалений

Просмотреть файл

@ -186,6 +186,9 @@
[ssh-gss.h ssh.h ssh1.h ssh2.h sshconnect.h sshlogin.h sshpty.h]
[ttymodes.h uidswap.h uuencode.h xmalloc.h]
standardise spacing in $OpenBSD$ tags; requested by deraadt@
- deraadt@cvs.openbsd.org 2006/03/26 01:31:48
[uuencode.c]
typo
20060325
- OpenBSD CVS Sync
@ -4443,4 +4446,4 @@
- (djm) Trim deprecated options from INSTALL. Mention UsePAM
- (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
$Id: ChangeLog,v 1.4286 2006/03/26 03:30:00 djm Exp $
$Id: ChangeLog,v 1.4287 2006/03/26 03:30:33 djm Exp $

Просмотреть файл

@ -1,4 +1,4 @@
/* $OpenBSD: uuencode.c,v 1.20 2006/03/25 13:17:03 djm Exp $ */
/* $OpenBSD: uuencode.c,v 1.21 2006/03/26 01:31:48 deraadt Exp $ */
/*
* Copyright (c) 2000 Markus Friedl. All rights reserved.
*
@ -58,7 +58,7 @@ uudecode(const char *src, u_char *target, size_t targsize)
void
dump_base64(FILE *fp, u_char *data, u_int len)
{
char *buf;;
char *buf;
int i, n;
if (len > 65536) {