diff options
author | Guenter Bartsch <guenter@users.sourceforge.net> | 2001-11-18 03:53:23 +0000 |
---|---|---|
committer | Guenter Bartsch <guenter@users.sourceforge.net> | 2001-11-18 03:53:23 +0000 |
commit | 4c71c84391e9a607394b7f7a23877ba15dffbf67 (patch) | |
tree | 53bf6a2b06b97cde43a11cafda54942a3a9bea45 /src/input/input_net.c | |
parent | 4b36ff207a52ea90bfd9b8c34c97f14963f0960d (diff) | |
download | xine-lib-4c71c84391e9a607394b7f7a23877ba15dffbf67.tar.gz xine-lib-4c71c84391e9a607394b7f7a23877ba15dffbf67.tar.bz2 |
new configfile interface, code cleanup, xprintf is gone
CVS patchset: 1064
CVS date: 2001/11/18 03:53:23
Diffstat (limited to 'src/input/input_net.c')
-rw-r--r-- | src/input/input_net.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/src/input/input_net.c b/src/input/input_net.c index 67d5d3fb9..fcf0914d9 100644 --- a/src/input/input_net.c +++ b/src/input/input_net.c @@ -46,8 +46,6 @@ #endif -static uint32_t xine_debug; - #define NET_BS_LEN 2324 typedef struct { @@ -167,11 +165,8 @@ static int net_plugin_open (input_plugin_t *this_gen, char *mrl) { if(strncmp(filename, "//", 2)==0) filename+=2; - xprintf (VERBOSE|INPUT, "Opening >%s<\n", filename); - pptr=strrchr(filename, ':'); - if(pptr) - { + if(pptr) { *pptr++=0; sscanf(pptr,"%d", &port); } @@ -312,7 +307,6 @@ input_plugin_t *init_input_plugin (int iface, xine_t *xine) { this = (net_input_plugin_t *) xine_xmalloc(sizeof(net_input_plugin_t)); config = xine->config; - xine_debug = config->lookup_int (config, "xine_debug", 0); this->input_plugin.interface_version = INPUT_PLUGIN_IFACE_VERSION; this->input_plugin.get_capabilities = net_plugin_get_capabilities; |