X-Git-Url: https://git.exim.org/exim.git/blobdiff_plain/1d28cc061677bd07d9bed48dd84bd5c590247043..HEAD:/src/src/lss.c diff --git a/src/src/lss.c b/src/src/lss.c index e6ec1d6d1..77baa69a0 100644 --- a/src/src/lss.c +++ b/src/src/lss.c @@ -2,6 +2,7 @@ * Exim - an Internet mail transport agent * *************************************************/ +/* Copyright (c) The Exim Maintainers 2023 */ /* Copyright (c) University of Cambridge 1995 - 2015 */ /* See the file NOTICE for conditions of use and distribution. */ /* SPDX-License-Identifier: GPL-2.0-or-later */ @@ -134,9 +135,9 @@ A zero is added on to the end to make it easy in cases where the result is to be interpreted as text. This is not included in the count. */ int -lss_b64decode(uschar *code, uschar **ptr) +lss_b64decode(uschar * code, uschar ** ptr) { -return b64decode(code, ptr); +return b64decode(code, ptr, code); }