summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego 'Flameeyes' Pettenò <flameeyes@gmail.com>2007-12-18 22:32:46 +0100
committerDiego 'Flameeyes' Pettenò <flameeyes@gmail.com>2007-12-18 22:32:46 +0100
commit923db0a3878ffe545084b13f23f7b2e23f66f097 (patch)
tree5127b55a192d16dfc132d287d62844dcffbe566c
parent0f3a27b95f4efb0b541bacf2684a904787e4bab3 (diff)
downloadxine-lib-923db0a3878ffe545084b13f23f7b2e23f66f097.tar.gz
xine-lib-923db0a3878ffe545084b13f23f7b2e23f66f097.tar.bz2
Mark the enctable static.
-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 c4ce7af83..407e2045e 100644
--- a/src/input/input_http.c
+++ b/src/input/input_http.c
@@ -232,7 +232,7 @@ static int _x_use_proxy(http_input_class_t *this, const char *host) {
}
static int http_plugin_basicauth (const char *user, const char *password, char* dest, int len) {
- static char *enctable="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";
+ static const char enctable[]="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";
char *tmp;
char *sptr;
char *dptr;