X-Git-Url: https://git.exim.org/exim.git/blobdiff_plain/107077d7fd6736711bf5cd980221723401d37c51..HEAD:/src/src/auths/get_data.c diff --git a/src/src/auths/get_data.c b/src/src/auths/get_data.c index 4c67f17e2..3a9a0a46a 100644 --- a/src/src/auths/get_data.c +++ b/src/src/auths/get_data.c @@ -2,7 +2,7 @@ * Exim - an Internet mail transport agent * *************************************************/ -/* Copyright (c) The Exim Maintainers 2020 - 2023 */ +/* Copyright (c) The Exim Maintainers 2020 - 2024 */ /* Copyright (c) University of Cambridge 1995 - 2018 */ /* See the file NOTICE for conditions of use and distribution. */ /* SPDX-License-Identifier: GPL-2.0-or-later */ @@ -77,7 +77,7 @@ auth_get_data(uschar ** aptr, const uschar * challenge, int challen) { int c; int p = 0; -smtp_printf("334 %s\r\n", FALSE, b64encode(challenge, challen)); +smtp_printf("334 %s\r\n", SP_NO_MORE, b64encode(challenge, challen)); while ((c = receive_getc(GETC_BUFFER_UNLIMITED)) != '\n' && c != EOF) { if (p >= big_buffer_size - 1) return BAD64; @@ -166,7 +166,7 @@ if (!ss) return CANCELLED; } string_format(buffer, buffsize, "expansion of \"%s\" failed in %s " - "authenticator: %s", *inout, ablock->name, expand_string_message); + "authenticator: %s", *inout, ablock->drinst.name, expand_string_message); return ERROR; } @@ -225,7 +225,7 @@ if (flags & AUTH_ITEM_LAST) if (smtp_write_command(sx, SCMD_FLUSH, "*\r\n") >= 0) (void)smtp_read_response(sx, US buffer, buffsize, '2', timeout); string_format(buffer, buffsize, "Too few items in client_send in %s " - "authenticator", ablock->name); + "authenticator", ablock->drinst.name); return ERROR; }