]> git.sesse.net Git - vlc/blobdiff - modules/misc/gnutls.c
Compile fix for C++ files
[vlc] / modules / misc / gnutls.c
index 5695c69af8e8a75e4e07836ff20750bba9f4480a..8cec5f27f9af463af2a02f3c9416c01f217b5524 100644 (file)
@@ -29,7 +29,7 @@
  * - client-side server cert validation (?).
  */
 
+
 /*****************************************************************************
  * Preamble
  *****************************************************************************/
@@ -53,7 +53,7 @@ static void Close( vlc_object_t * );
 
 #define DH_BITS_TEXT N_("Diffie-Hellman prime bits")
 #define DH_BITS_LONGTEXT N_( \
-    "Allows you to modify the Diffie-Hellman prime's number of bits" \
+    "Allows you to modify the Diffie-Hellman prime's number of bits " \
     "(used for TLS or SSL-based server-side encryption)." )
 
 vlc_module_begin();
@@ -142,7 +142,6 @@ gnutls_SessionHandshake( tls_session_t *p_session, int fd )
 
     gnutls_transport_set_ptr (p_sys->session, (gnutls_transport_ptr)fd);
 
-    msg_Dbg( p_session->p_tls, "shaking hand..." );
     do
         /* TODO: handle fatal error */
         val = gnutls_handshake( p_sys->session );
@@ -157,7 +156,6 @@ gnutls_SessionHandshake( tls_session_t *p_session, int fd )
         free( p_session );
         return NULL;
     }
-    msg_Dbg( p_session->p_tls, "shaked hand." );
 
     return p_session;
 }
@@ -587,7 +585,7 @@ static int gcry_vlc_mutex_unlock (void **lock)
     return vlc_mutex_unlock ((vlc_mutex_t *)*lock);
 }
 
-static struct gcry_thread_cbs gcry_threads_vlc =                        
+static struct gcry_thread_cbs gcry_threads_vlc =
 {
     GCRY_THREAD_OPTION_USER,
     NULL,