[Privoxy-commits] [privoxy] 40/46: OpenSSL ssl_base64_encode(): Remove superfluous space

User Git git at git.privoxy.org
Sun Feb 21 15:11:02 UTC 2021


This is an automated email from the git hooks/post-receive script.

git pushed a commit to branch master
in repository privoxy.

commit 0738934066499d546810a67d74b6297ccfeb52f7
Author: Fabian Keil <fk at fabiankeil.de>
AuthorDate: Mon Feb 15 11:18:55 2021 +0100

    OpenSSL ssl_base64_encode(): Remove superfluous space
---
 openssl.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/openssl.c b/openssl.c
index 1386d167..469c2170 100644
--- a/openssl.c
+++ b/openssl.c
@@ -1289,7 +1289,7 @@ static void log_ssl_errors(int debuglevel, const char* fmt, ...)
 extern int ssl_base64_encode(unsigned char *dst, size_t dlen, size_t *olen,
                              const unsigned char *src, size_t slen)
 {
-   *olen = 4 * ((slen/3)  + ((slen%3) ? 1 : 0)) + 1;
+   *olen = 4 * ((slen/3) + ((slen%3) ? 1 : 0)) + 1;
    if (*olen > dlen)
    {
       return ENOBUFS;

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Privoxy-commits mailing list