diff options
| author | Peter Wemm <peter@FreeBSD.org> | 2015-08-09 04:35:12 +0000 |
|---|---|---|
| committer | Peter Wemm <peter@FreeBSD.org> | 2015-08-09 04:35:12 +0000 |
| commit | e52054a87e280687f7c530f9ecdcb93297ff4c71 (patch) | |
| tree | f40c045c14dbb6cdf9a33b0a4cada8123bbfe8a3 /auth | |
| parent | b907131b5fff33b1842789f9dd77f77e61f8d7d1 (diff) | |
Diffstat (limited to 'auth')
| -rw-r--r-- | auth/auth_spnego_sspi.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/auth/auth_spnego_sspi.c b/auth/auth_spnego_sspi.c index 2f75f7a1b40c..32b719ee556a 100644 --- a/auth/auth_spnego_sspi.c +++ b/auth/auth_spnego_sspi.c @@ -95,8 +95,8 @@ cleanup_ctx(void *data) } if (SecIsValidHandle(&ctx->sspi_credentials)) { - FreeCredentialsHandle(&ctx->sspi_context); - SecInvalidateHandle(&ctx->sspi_context); + FreeCredentialsHandle(&ctx->sspi_credentials); + SecInvalidateHandle(&ctx->sspi_credentials); } return APR_SUCCESS; |
