]> git.sesse.net Git - vlc/blobdiff - modules/services_discovery/hal.c
services_discovery/*: String review (refs #438) and suppress the sap-addr option
[vlc] / modules / services_discovery / hal.c
index f40b33b770e856e2ec4d91056d2ab6d801076450..6aad8d524bb34d31c2651b5497b9f6efd6da9154 100644 (file)
@@ -4,7 +4,7 @@
  * Copyright (C) 2004 the VideoLAN team
  * $Id$
  *
- * Authors: Clément Stenac <zorglub@videolan.org>
+ * Authors: Clément Stenac <zorglub@videolan.org>
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -115,14 +115,14 @@ static int Open( vlc_object_t *p_this )
     p_sys->p_ctx = libhal_ctx_new();
     if( !p_sys->p_ctx )
     {
-        msg_Err( p_sd, "Unable to create HAL context") ;
+        msg_Err( p_sd, "unable to create HAL context") ;
         free( p_sys );
         return VLC_EGENERIC;
     }
     p_connection = dbus_bus_get( DBUS_BUS_SYSTEM, &dbus_error );
     if( dbus_error_is_set( &dbus_error ) )
     {
-        msg_Err( p_sd, "Unable to connect to DBUS: %s", dbus_error.message );
+        msg_Err( p_sd, "unable to connect to DBUS: %s", dbus_error.message );
         dbus_error_free( &dbus_error );
         free( p_sys );
         return VLC_EGENERIC;