summaryrefslogtreecommitdiff
path: root/xine_frontend_main.c
diff options
context:
space:
mode:
Diffstat (limited to 'xine_frontend_main.c')
-rw-r--r--xine_frontend_main.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/xine_frontend_main.c b/xine_frontend_main.c
index 6c8c7205..8a796b1d 100644
--- a/xine_frontend_main.c
+++ b/xine_frontend_main.c
@@ -4,7 +4,7 @@
* See the main source file 'xineliboutput.c' for copyright information and
* how to reach the author.
*
- * $Id: xine_frontend_main.c,v 1.51 2008-11-01 07:23:00 phintuka Exp $
+ * $Id: xine_frontend_main.c,v 1.52 2008-11-04 12:19:07 phintuka Exp $
*
*/
@@ -18,6 +18,9 @@
#include "tools/vdrdiscovery.h"
+/* next symbol is dynamically linked from input plugin */
+int SysLogLevel __attribute__((visibility("default"))) = 2; /* errors and info, no debug */
+
static void list_plugins_type(xine_t *xine, const char *msg, typeof (xine_list_audio_output_plugins) list_func)
{
@@ -372,6 +375,8 @@ int main(int argc, char *argv[])
int repeat_emu = 0;
char *exec_name = argv[0];
+ LogToSysLog = 0;
+
if(strrchr(argv[0],'/'))
exec_name = strrchr(argv[0],'/')+1;