From e238283b3026015687185a498f5f00288f706db7 Mon Sep 17 00:00:00 2001 From: Kenichi Handa Date: Wed, 7 Apr 1999 05:40:54 +0000 Subject: [PATCH] (base64_encode_1): Don't add unnecessary newline at the tail. --- src/fns.c | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/fns.c b/src/fns.c index 401789e2bab..10fbbdc5cc1 100644 --- a/src/fns.c +++ b/src/fns.c @@ -2999,12 +2999,6 @@ base64_encode_1 (from, to, length, line_break) *e++ = base64_value_to_char[0x3f & c]; } - /* Complete last partial line. */ - - if (line_break) - if (counter > 0) - *e++ = '\n'; - return e - to; } -- 2.39.2