From 04689cbf9c09d68ed5640919757d4bef292a9c57 Mon Sep 17 00:00:00 2001 From: Jakub Hrozek Date: Wed, 3 Apr 2013 11:31:58 +0200 Subject: krb5 child: Use the correct type when processing OTP --- src/providers/krb5/krb5_child.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/providers/krb5/krb5_child.c') diff --git a/src/providers/krb5/krb5_child.c b/src/providers/krb5/krb5_child.c index 4ccd75d26..425effb17 100644 --- a/src/providers/krb5/krb5_child.c +++ b/src/providers/krb5/krb5_child.c @@ -300,7 +300,7 @@ static krb5_error_code answer_otp(krb5_context ctx, } /* Validate our assumptions about the contents of authtok. */ - ret = sss_authtok_get_password(&kr->pd->authtok, &pwd, &len); + ret = sss_authtok_get_password(kr->pd->authtok, &pwd, &len); if (ret != EOK) goto done; -- cgit