X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fsrc%2Flss.c;h=59cbd7ff4b3d7b2cb856f78d14daf4eae410e620;hb=c193398df07b9917b917b38030c4544271024474;hp=ca27bd4d5c902bb64b36cd5700a239870cb1082e;hpb=55414b25bee9f0195ccd1e47f3d3b5cba766e099;p=user%2Fhenk%2Fcode%2Fexim.git diff --git a/src/src/lss.c b/src/src/lss.c index ca27bd4d5..59cbd7ff4 100644 --- a/src/src/lss.c +++ b/src/src/lss.c @@ -2,7 +2,7 @@ * Exim - an Internet mail transport agent * *************************************************/ -/* Copyright (c) University of Cambridge 1995 - 2009 */ +/* Copyright (c) University of Cambridge 1995 - 2015 */ /* See the file NOTICE for conditions of use and distribution. */ /* Support functions for calling from local_scan(). These are mostly just @@ -117,7 +117,7 @@ Returns: a pointer to the zero-terminated base 64 string, which uschar * lss_b64encode(uschar *clear, int len) { -return auth_b64encode(clear, len); +return b64encode(clear, len); } /* @@ -135,7 +135,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); }