1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-09-27 02:56:18 -04:00

[protocol] more const in get_protocol_proxy

This commit is contained in:
Witold Filipczyk 2022-02-17 20:22:29 +01:00
parent 839c408086
commit dbe9cd5fe3

View File

@ -82,7 +82,7 @@ proxy_uri(struct uri *uri, char *proxy,
static char * static char *
strip_proxy_protocol(char *proxy, strip_proxy_protocol(char *proxy,
char *strip1, char *strip2) const char *strip1, const char *strip2)
{ {
assert(proxy && *proxy); assert(proxy && *proxy);
@ -100,8 +100,8 @@ strip_proxy_protocol(char *proxy,
* --pasky */ * --pasky */
static char * static char *
get_protocol_proxy(const char *opt, get_protocol_proxy(const char *opt,
char *env1, char *env2, const char *env1, const char *env2,
char *strip1, char *strip2) const char *strip1, const char *strip2)
{ {
char *proxy; char *proxy;