Code reformatting
authorHugo Villeneuve <hugo@hugovil.com>
Sat, 25 May 2013 21:50:53 +0000 (17:50 -0400)
committerHugo Villeneuve <hugo@hugovil.com>
Sat, 25 May 2013 22:55:30 +0000 (18:55 -0400)
src/network.c
src/ssl.c

index e5eb47b..b46bce7 100644 (file)
@@ -194,7 +194,7 @@ WmnotifyGetResponse( char *buffer, int max_size )
 
 #if HAVE_SSL
   if( wmnotify_infos.use_ssl == TRUE ) {
-    len = SSL_read( ssl_infos.ssl, buffer, max_size ); /* Get reply & decrypt */
+    len = SSL_read( ssl_infos.ssl, buffer, max_size ); /* Get reply & decrypt. */
     switch( SSL_get_error( ssl_infos.ssl, len ) ) {
     case SSL_ERROR_NONE:
       /* Success. */
index 4b9f520..245ea8d 100644 (file)
--- a/src/ssl.c
+++ b/src/ssl.c
@@ -35,10 +35,10 @@ InitCTX( void )
   SSL_METHOD *method;\r
   SSL_CTX *ctx;\r
   \r
-  OpenSSL_add_all_algorithms(); /* Load cryptos, et.al. */\r
-  SSL_load_error_strings(); /* Bring in and register error messages */\r
+  OpenSSL_add_all_algorithms();   /* Load cryptos, et.al. */\r
+  SSL_load_error_strings();       /* Bring in and register error messages */\r
   method = SSLv2_client_method(); /* Create new client-method instance */\r
-  ctx = SSL_CTX_new(method); /* Create new context */\r
+  ctx = SSL_CTX_new(method);      /* Create new context */\r
   if( ctx == NULL ) {\r
     ERR_print_errors_fp(stderr);\r
     abort();\r