From 661d7dfa8e92db8a13f7d9c79c18e4b9f403878d Mon Sep 17 00:00:00 2001 From: Philip Hazel Date: Tue, 2 Aug 2005 13:23:19 +0000 Subject: [PATCH] Fix example usage in comment at the start of the SPA/NTLM code. --- src/src/auths/auth-spa.c | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/src/src/auths/auth-spa.c b/src/src/auths/auth-spa.c index bd7fd41ed..b0f52da12 100644 --- a/src/src/auths/auth-spa.c +++ b/src/src/auths/auth-spa.c @@ -1,4 +1,4 @@ -/* $Cambridge: exim/src/src/auths/auth-spa.c,v 1.2 2004/12/29 10:55:58 ph10 Exp $ */ +/* $Cambridge: exim/src/src/auths/auth-spa.c,v 1.3 2005/08/02 13:23:19 ph10 Exp $ */ /************************************************* * Exim - an Internet mail transport agent * @@ -85,6 +85,13 @@ int main (int argc, char ** argv) challenge_str = argv [3]; + if (spa_base64_to_bits ((char *)&challenge, sizeof(challenge), + (const char *)(challenge_str))<0) + { + printf("bad base64 data in challenge: %s\n", challenge_str); + exit (1); + } + spa_build_auth_response (&challenge, &response, username, password); spa_bits_to_base64 (msgbuf, (unsigned char*)&response, spa_request_length(&response)); -- 2.30.2