Commit 4d11746a360a7df22ee75f0d0cbc99fd43f4f8ca
1 parent
2ec23314
Exists in
master
and in
3 other branches
Fixing customized build.
Showing
1 changed file
with
2 additions
and
2 deletions
Show diff stats
src/ssl/negotiate.c
@@ -401,11 +401,11 @@ static int background_ssl_negotiation(H3270 *hSession, void *message) | @@ -401,11 +401,11 @@ static int background_ssl_negotiation(H3270 *hSession, void *message) | ||
401 | 401 | ||
402 | #ifdef SSL_ENABLE_SELF_SIGNED_CERT_CHECK | 402 | #ifdef SSL_ENABLE_SELF_SIGNED_CERT_CHECK |
403 | static const LIB3270_POPUP popup = { | 403 | static const LIB3270_POPUP popup = { |
404 | - .name = "SelfSignedCert", | ||
405 | .type = LIB3270_NOTIFY_SECURE, | 404 | .type = LIB3270_NOTIFY_SECURE, |
406 | .summary = N_( "The SSL certificate for this host is not trusted." ), | 405 | .summary = N_( "The SSL certificate for this host is not trusted." ), |
407 | .body = N_( "The security certificate presented by this host was not issued by a trusted certificate authority." ) | 406 | .body = N_( "The security certificate presented by this host was not issued by a trusted certificate authority." ) |
408 | - } | 407 | + }; |
408 | + | ||
409 | ((SSL_ERROR_MESSAGE *) message)->popup = &popup; | 409 | ((SSL_ERROR_MESSAGE *) message)->popup = &popup; |
410 | return EACCES; | 410 | return EACCES; |
411 | #else | 411 | #else |