summaryrefslogtreecommitdiff
path: root/src/input/input_http.c
diff options
context:
space:
mode:
authorMichael Roitzsch <mroi@users.sourceforge.net>2002-09-06 18:13:10 +0000
committerMichael Roitzsch <mroi@users.sourceforge.net>2002-09-06 18:13:10 +0000
commit6c4cd36cc5ced530a387327c4f6c576074424c6c (patch)
tree335cf36c9732583e317983a126ec508e2d08ce0b /src/input/input_http.c
parent75dc355377ef3cc01cfec10a1872ad64eee154ae (diff)
downloadxine-lib-6c4cd36cc5ced530a387327c4f6c576074424c6c.tar.gz
xine-lib-6c4cd36cc5ced530a387327c4f6c576074424c6c.tar.bz2
introduce "const"
fix some input plugins that would not copy the mrl on open CVS patchset: 2623 CVS date: 2002/09/06 18:13:10
Diffstat (limited to 'src/input/input_http.c')
-rw-r--r--src/input/input_http.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/input/input_http.c b/src/input/input_http.c
index 954c8d2e0..1ebbf0f2f 100644
--- a/src/input/input_http.c
+++ b/src/input/input_http.c
@@ -290,7 +290,7 @@ static int http_plugin_basicauth (const char *user, const char *password,
static off_t http_plugin_read (input_plugin_t *this_gen,
char *buf, off_t nlen) ;
-static int http_plugin_open (input_plugin_t *this_gen, char *mrl) {
+static int http_plugin_open (input_plugin_t *this_gen, const char *mrl) {
http_input_plugin_t *this = (http_input_plugin_t *) this_gen;
char *proxy;