--- a/libpurple/plugins/ssl/ssl-nss.c Tue Mar 04 18:31:03 2014 +0530 +++ b/libpurple/plugins/ssl/ssl-nss.c Fri Mar 14 19:30:31 2014 +0530 @@ -270,8 +270,8 @@ * Ideally this information would be exposed to the UI somehow, but for now we * just print it to the debug log */ -static void -printSecurityInfo(PRFileDesc *fd) +static void +print_security_info(PRFileDesc *fd) { SECStatus result; SSLChannelInfo channel; @@ -291,9 +291,9 @@ "Compression: %s\n" "Cipher Suite Name: %s\n", channel.protocolVersion >> 8, - channel.protocolVersion & 0xff, + channel.protocolVersion & 0xff, suite.effectiveKeyBits, - suite.symCipherName, + suite.symCipherName, suite.macBits, suite.macAlgorithmName, channel.authKeyBits, @@ -333,7 +333,7 @@ return; } - printSecurityInfo(nss_data->in); + print_security_info(nss_data->in); purple_input_remove(nss_data->handshake_handler); nss_data->handshake_handler = 0;