mirror of
https://github.com/rkd77/elinks.git
synced 2024-12-04 14:46:47 -05:00
[protocol] more const in get_protocol_proxy
This commit is contained in:
parent
839c408086
commit
dbe9cd5fe3
@ -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;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user