]> git.sesse.net Git - vlc/commitdiff
Cosmetics
authorRémi Denis-Courmont <remi@remlab.net>
Tue, 31 Mar 2009 19:26:20 +0000 (22:26 +0300)
committerRémi Denis-Courmont <remi@remlab.net>
Tue, 31 Mar 2009 19:27:30 +0000 (22:27 +0300)
src/network/httpd.c

index 995dcc8777c605932fb8f503703bff7b3940fc2b..db027ee4c8bdddcada0af57071fe4c8c8bf506aa 100644 (file)
@@ -1164,7 +1164,7 @@ void httpd_HostDelete( httpd_host_t *host )
     {
         /* still used */
         vlc_mutex_unlock( &httpd_mutex );
-        msg_Dbg( host, "httpd_HostDelete: host still used" );
+        msg_Dbg( host, "httpd_HostDelete: host still in use" );
         return;
     }
     TAB_REMOVE( httpd->i_host, httpd->host, host );
@@ -1202,12 +1202,11 @@ void httpd_HostDelete( httpd_host_t *host )
     vlc_object_release( httpd );
     if( httpd->i_host <= 0 )
     {
-        msg_Dbg( httpd, "no host left, stopping httpd" );
+        msg_Dbg( httpd, "no hosts left, stopping httpd" );
 
         libvlc_priv (httpd->p_libvlc)->p_httpd = NULL;
         vlc_object_detach( httpd );
         vlc_object_release( httpd );
-
     }
     vlc_mutex_unlock( &httpd_mutex );
 }