Commit 4d11746a360a7df22ee75f0d0cbc99fd43f4f8ca

Authored by Perry Werneck
1 parent 2ec23314

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 401  
402 402 #ifdef SSL_ENABLE_SELF_SIGNED_CERT_CHECK
403 403 static const LIB3270_POPUP popup = {
404   - .name = "SelfSignedCert",
405 404 .type = LIB3270_NOTIFY_SECURE,
406 405 .summary = N_( "The SSL certificate for this host is not trusted." ),
407 406 .body = N_( "The security certificate presented by this host was not issued by a trusted certificate authority." )
408   - }
  407 + };
  408 +
409 409 ((SSL_ERROR_MESSAGE *) message)->popup = &popup;
410 410 return EACCES;
411 411 #else
... ...