aboutsummaryrefslogtreecommitdiffstats
path: root/lib/ippool.c
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2017-08-02 22:58:54 +0200
committerHarald Welte <laforge@gnumonks.org>2017-08-09 22:09:34 +0200
commit53165ede24b106326d3762232435e0a28c10e1bb (patch)
tree110cc017b0858a98c5381b8ed012ca4af798898f /lib/ippool.c
parent63ebccdfe350d7e75bbb8e5511bcde26a7e300ad (diff)
ippool_new(): const-ify input arguments
Diffstat (limited to 'lib/ippool.c')
-rw-r--r--lib/ippool.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ippool.c b/lib/ippool.c
index c3eb267..3ca1b86 100644
--- a/lib/ippool.c
+++ b/lib/ippool.c
@@ -186,7 +186,7 @@ void in46a_inc(struct in46_addr *addr)
}
/* Create new address pool */
-int ippool_new(struct ippool_t **this, char *dyn, char *stat,
+int ippool_new(struct ippool_t **this, const char *dyn, const char *stat,
int allowdyn, int allowstat, int flags)
{