Commit 842267b727ba7f362aaa2de7d538e3ccbc937ebf

Authored by perry.werneck@gmail.com
1 parent 77c8ce89

Corrigindo warning durante a compilacao em windows

Showing 1 changed file with 1 additions and 1 deletions   Show diff stats
telnet.c
... ... @@ -803,7 +803,7 @@ static int ssl_negotiate(H3270 *hSession)
803 803  
804 804 trace_dsn(hSession,"TLS/SSL negotiated connection complete. Connection is now secure.\n");
805 805  
806   - trace_dsn(hSession,"TLS/SSL cipher description: %s",SSL_CIPHER_description(cipher, buffer, 4095));
  806 + trace_dsn(hSession,"TLS/SSL cipher description: %s",SSL_CIPHER_description((SSL_CIPHER *) cipher, buffer, 4095));
807 807 SSL_CIPHER_get_bits(cipher, &alg_bits);
808 808 trace_dsn(hSession,"%s version %s with %d bits verify=%ld\n",
809 809 SSL_CIPHER_get_name(cipher),
... ...