libpurple/plugins/ssl/ssl-nss.c

branch
soc.2013.gobjectification.plugins
changeset 37127
50a4881a4041
parent 37074
1e7b4b3741a0
parent 35630
8e5d0d726b09
child 37156
5902dd574c6e
--- 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;

mercurial