Commit bf73e967103bef815c59a415320f2ccd6eb554d0

Authored by perry.werneck@gmail.com
1 parent 4970ddb2

Corrigindo warning durante a compilacao em windows

Showing 1 changed file with 1 additions and 1 deletions   Show diff stats
src/lib3270/telnet.c
@@ -803,7 +803,7 @@ static int ssl_negotiate(H3270 *hSession) @@ -803,7 +803,7 @@ static int ssl_negotiate(H3270 *hSession)
803 803
804 trace_dsn(hSession,"TLS/SSL negotiated connection complete. Connection is now secure.\n"); 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 SSL_CIPHER_get_bits(cipher, &alg_bits); 807 SSL_CIPHER_get_bits(cipher, &alg_bits);
808 trace_dsn(hSession,"%s version %s with %d bits verify=%ld\n", 808 trace_dsn(hSession,"%s version %s with %d bits verify=%ld\n",
809 SSL_CIPHER_get_name(cipher), 809 SSL_CIPHER_get_name(cipher),