X-Git-Url: https://git.exim.org/exim.git/blobdiff_plain/3386088d5af4d4c61faa12ae29560e2c5bd43304..1d28cc061677bd07d9bed48dd84bd5c590247043:/src/src/lss.c diff --git a/src/src/lss.c b/src/src/lss.c index 62b0a35f1..e6ec1d6d1 100644 --- a/src/src/lss.c +++ b/src/src/lss.c @@ -4,6 +4,7 @@ /* 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 */ /* Support functions for calling from local_scan(). These are mostly just wrappers for various internal functions. */ @@ -115,9 +116,9 @@ Returns: a pointer to the zero-terminated base 64 string, which */ uschar * -lss_b64encode(uschar *clear, int len) +lss_b64encode(uschar * clear, int len) { -return auth_b64encode(clear, len); +return b64encode(CUS clear, len); } /* @@ -135,7 +136,7 @@ be interpreted as text. This is not included in the count. */ int lss_b64decode(uschar *code, uschar **ptr) { -return auth_b64decode(code, ptr); +return b64decode(code, ptr); }