Skip to content

Commit

Permalink
login-common: Remove unused ssl_require_crl setting.
Browse files Browse the repository at this point in the history
  • Loading branch information
stephanbosch authored and villesavolainen committed Apr 16, 2018
1 parent f4000dd commit c6eaa00
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
2 changes: 0 additions & 2 deletions src/login-common/login-settings.c
Expand Up @@ -34,7 +34,6 @@ static const struct setting_define login_setting_defines[] = {

DEF(SET_STR, ssl_client_cert),
DEF(SET_STR, ssl_client_key),
DEF(SET_BOOL, ssl_require_crl),
DEF(SET_BOOL, auth_ssl_require_client_cert),
DEF(SET_BOOL, auth_ssl_username_from_cert),

Expand Down Expand Up @@ -63,7 +62,6 @@ static const struct login_settings login_default_settings = {

.ssl_client_cert = "",
.ssl_client_key = "",
.ssl_require_crl = TRUE,
.auth_ssl_require_client_cert = FALSE,
.auth_ssl_username_from_cert = FALSE,

Expand Down
1 change: 0 additions & 1 deletion src/login-common/login-settings.h
Expand Up @@ -17,7 +17,6 @@ struct login_settings {

const char *ssl_client_cert;
const char *ssl_client_key;
bool ssl_require_crl;
bool auth_ssl_require_client_cert;
bool auth_ssl_username_from_cert;

Expand Down

0 comments on commit c6eaa00

Please sign in to comment.