Skip to content

Commit

Permalink
Put certs into correct container. Fixes #980
Browse files Browse the repository at this point in the history
  • Loading branch information
alandekok committed Apr 27, 2015
1 parent 7470632 commit 6616e48
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/tls_listen.c
Expand Up @@ -175,7 +175,7 @@ static int tls_socket_recv(rad_listen_t *listener)
}

SSL_set_ex_data(sock->ssn->ssl, FR_TLS_EX_INDEX_REQUEST, (void *)request);
SSL_set_ex_data(sock->ssn->ssl, fr_tls_ex_index_certs, (void *)&request->packet->vps);
SSL_set_ex_data(sock->ssn->ssl, fr_tls_ex_index_certs, (void *) &sock->certs);
SSL_set_ex_data(sock->ssn->ssl, FR_TLS_EX_INDEX_TALLOC, sock->parent);

doing_init = true;
Expand Down

0 comments on commit 6616e48

Please sign in to comment.