summaryrefslogtreecommitdiff
path: root/lib/ip.c
diff options
context:
space:
mode:
authorOndrej Zajicek (work) <santiago@crfreenet.org>2015-11-24 13:52:26 +0100
committerOndrej Zajicek (work) <santiago@crfreenet.org>2015-11-24 13:52:26 +0100
commite422ca0f292d08a873deacdbffbb6c6cbd79f88a (patch)
tree09bd32db472addf4fd7a1f497892f95e1c4cb858 /lib/ip.c
parent5126380beace4e39578f005fe115917b8e8b8ff3 (diff)
Some consts for function arguments
Patch from Pavel Tvrdik
Diffstat (limited to 'lib/ip.c')
-rw-r--r--lib/ip.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/ip.c b/lib/ip.c
index e1bfba49..2061a1f7 100644
--- a/lib/ip.c
+++ b/lib/ip.c
@@ -233,7 +233,7 @@ ip6_ntop(ip6_addr a, char *b)
}
int
-ip4_pton(char *a, ip4_addr *o)
+ip4_pton(const char *a, ip4_addr *o)
{
int i;
unsigned long int l;
@@ -258,11 +258,11 @@ ip4_pton(char *a, ip4_addr *o)
}
int
-ip6_pton(char *a, ip6_addr *o)
+ip6_pton(const char *a, ip6_addr *o)
{
u16 words[8];
int i, j, k, l, hfil;
- char *start;
+ const char *start;
if (a[0] == ':') /* Leading :: */
{