]> andersk Git - openssh.git/commitdiff
- (bal) uuencode.c resync w/ OpenBSD tree, plus whitespace.
authormouring <mouring>
Sat, 10 Feb 2001 23:30:16 +0000 (23:30 +0000)
committermouring <mouring>
Sat, 10 Feb 2001 23:30:16 +0000 (23:30 +0000)
ChangeLog
uuencode.c

index 57475aaad1b0413c44dae2eb53ac69f45c19538f..62a31627f39e84fb9568c9fcbe673665e003926b 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -87,6 +87,7 @@
    (from the OpenBSD tree)
  - (bal) Synced ssh.1, ssh-add.1 and sshd.8 w/ OpenBSD
  - (bal) sftp-sever.c  '%8lld' to '%8llu' (OpenBSD Sync)
+ - (bal) uuencode.c resync w/ OpenBSD tree, plus whitespace.
 
 20010210
  - (djm) Sync sftp and scp stuff from OpenBSD:
index d5f2b96b3d707e22d0f5868ba9c8711c8a41538b..5d93e0b617e68a783510e1a6f330154ffb85ff34 100644 (file)
@@ -1,4 +1,4 @@
-/*    $OpenBSD: uuencode.c,v 1.10 2001/02/08 19:30:53 itojun Exp $    */
+/*     $OpenBSD: uuencode.c,v 1.10 2001/02/08 19:30:53 itojun Exp $    */
 
 /*
  * Copyright (c) 2000 Markus Friedl.  All rights reserved.
@@ -26,6 +26,7 @@
 
 #include "includes.h"
 #include "xmalloc.h"
+#include "uuencode.h"
 
 RCSID("$OpenBSD: uuencode.c,v 1.10 2001/02/08 19:30:53 itojun Exp $");
 
@@ -61,6 +62,7 @@ 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]);
This page took 0.047582 seconds and 5 git commands to generate.