Queuefile: avoid using buffered I/O - no point for a block-copy
[exim.git] / src / src / lss.c
index 62b0a35f108af7d024a97b63842a08ed32cf59bc..59cbd7ff4b3d7b2cb856f78d14daf4eae410e620 100644 (file)
@@ -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);
 }