diff options
author | Xavier Roche <xroche@users.noreply.github.com> | 2014-06-10 20:27:13 +0000 |
---|---|---|
committer | Xavier Roche <xroche@users.noreply.github.com> | 2014-06-10 20:27:13 +0000 |
commit | 713b83f7b406858269863d92865b715470d6335c (patch) | |
tree | 79eb2733939d29388f0776f68da4b053427a61c9 /src/htsbauth.c | |
parent | 82e61ae9d68114bdcd6fafdb8bf823ae9ce69bef (diff) |
Added the following compiler flags:
* -Wcast-qual
* -Wmissing-parameter-type
* -Wold-style-definition
Diffstat (limited to 'src/htsbauth.c')
-rw-r--r-- | src/htsbauth.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/htsbauth.c b/src/htsbauth.c index 12af086..f0d6240 100644 --- a/src/htsbauth.c +++ b/src/htsbauth.c @@ -461,7 +461,7 @@ char *bauth_check(t_cookie * cookie, const char *adr, const char *fil) { char *bauth_prefix(char *prefix, const char *adr, const char *fil) { char *a; - strcpybuff(prefix, jump_identification(adr)); + strcpybuff(prefix, jump_identification_const(adr)); strcatbuff(prefix, fil); a = strchr(prefix, '?'); if (a) |