]> git.sesse.net Git - vlc/commitdiff
Lua SD: open more libs
authorFabio Ritrovato <sephiroth87@videolan.org>
Sun, 14 Feb 2010 21:24:32 +0000 (22:24 +0100)
committerFabio Ritrovato <sephiroth87@videolan.org>
Sun, 14 Feb 2010 21:24:47 +0000 (22:24 +0100)
modules/misc/lua/services_discovery.c

index 8e0216899874221a0e1eb8a69a3e991336b6caed..5f4e66de48d29689d469ddfd068615a5ddd592ff 100644 (file)
@@ -3,7 +3,7 @@
  *****************************************************************************
  * Copyright (C) 2009 the VideoLAN team
  *
- * Authors: Fabio Ritrovato <exsephiroth87 at videolan dot org>
+ * Authors: Fabio Ritrovato <sephiroth87 at videolan dot 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
@@ -96,6 +96,8 @@ int Open_LuaSD( vlc_object_t *p_this )
     luaopen_strings( L );
     luaopen_variables( L );
     luaopen_stream( L );
+    luaopen_gettext( L );
+    luaopen_xml( L );
     lua_pop( L, 1 );
     if( luaL_dofile( L, p_sys->psz_filename ) )
     {