Copyright updates:
[exim.git] / src / src / auths / xtextencode.c
index 30ff8f11ddb039401f34d74c1e2ccfea0e1210ff..fc571c79991bf8d93878de1f6f292cf368296ccc 100644 (file)
@@ -2,6 +2,7 @@
 *     Exim - an Internet mail transport agent    *
 *************************************************/
 
+/* Copyright (c) The Exim Maintainers 2022 */
 /* Copyright (c) University of Cambridge 1995 - 2018 */
 /* See the file NOTICE for conditions of use and distribution. */
 
@@ -40,7 +41,7 @@ in order to get the right amount of store. */
 while (c -- > 0)
   count += ((x = *p++) < 33 || x > 127 || x == '+' || x == '=')? 3 : 1;
 
-pp = code = store_get(count, is_tainted(clear));
+pp = code = store_get(count, clear);
 
 p = US clear;
 c = len;