summaryrefslogtreecommitdiff
path: root/lib/parse.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/parse.c')
-rw-r--r--lib/parse.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/parse.c b/lib/parse.c
index 48d71be..4d2d8b3 100644
--- a/lib/parse.c
+++ b/lib/parse.c
@@ -280,7 +280,8 @@ static int
parse_portname(struct ipset_session *session, const char *str,
uint16_t *port, const char *proto)
{
- char *saved, *tmp, *protoname;
+ char *saved, *tmp;
+ const char *protoname;
const struct protoent *protoent;
struct servent *service;
uint8_t protonum = 0;
@@ -292,7 +293,7 @@ parse_portname(struct ipset_session *session, const char *str,
if (tmp == NULL)
goto error;
- protoname = (char *)proto;
+ protoname = proto;
if (string_to_u8(session, proto, &protonum, IPSET_WARNING) == 0) {
protoent = getprotobynumber(protonum);
if (protoent == NULL)