summaryrefslogtreecommitdiff
path: root/proto_udp.c
diff options
context:
space:
mode:
authorTobias Klauser <tklauser@distanz.ch>2015-11-16 09:07:54 +0100
committerTobias Klauser <tklauser@distanz.ch>2015-11-16 09:07:54 +0100
commit48493306d27a1e2f7750228a37c32e892ffbb310 (patch)
treead05f41259f07f695498c83e14aad95c6ab7c97c /proto_udp.c
parent3d84a7208988ad641599271d5bfde078c2fc9b4c (diff)
lookup: Return const char * from all lookup functions
Signed-off-by: Tobias Klauser <tklauser@distanz.ch>
Diffstat (limited to 'proto_udp.c')
-rw-r--r--proto_udp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/proto_udp.c b/proto_udp.c
index b55dd2e..f607b14 100644
--- a/proto_udp.c
+++ b/proto_udp.c
@@ -25,7 +25,7 @@ static void udp(struct pkt_buff *pkt)
struct udphdr *udp = (struct udphdr *) pkt_pull(pkt, sizeof(*udp));
ssize_t len;
uint16_t src, dest;
- char *src_name, *dest_name;
+ const char *src_name, *dest_name;
if (udp == NULL)
return;
@@ -61,7 +61,7 @@ static void udp_less(struct pkt_buff *pkt)
{
struct udphdr *udp = (struct udphdr *) pkt_pull(pkt, sizeof(*udp));
uint16_t src, dest;
- char *src_name, *dest_name;
+ const char *src_name, *dest_name;
if (udp == NULL)
return;