From 3ce6c2fc66e95718fa718d1a8b3c08950ced5517 Mon Sep 17 00:00:00 2001 From: "Ruben S. Montero" Date: Tue, 25 Oct 2011 01:59:47 +0200 Subject: [PATCH] bug #847: Change token to be send to the driver. The target user is not included as part of the token --- src/um/UserPool.cc | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/um/UserPool.cc b/src/um/UserPool.cc index 4720d087c6..68a7aa822e 100644 --- a/src/um/UserPool.cc +++ b/src/um/UserPool.cc @@ -412,7 +412,10 @@ bool UserPool::authenticate_server(User * user, } //Initialize authentication request and call the driver - ar.add_authenticate(auth_driver,server_username,server_password,token); + ar.add_authenticate(auth_driver, + server_username, + server_password, + second_token); authm->trigger(AuthManager::AUTHENTICATE,&ar); ar.wait();