diff options
Diffstat (limited to 'proto_tcp.c')
-rw-r--r-- | proto_tcp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/proto_tcp.c b/proto_tcp.c index 6f2ab14..4b37e07 100644 --- a/proto_tcp.c +++ b/proto_tcp.c @@ -64,7 +64,7 @@ static void tcp(struct pkt_buff *pkt) { struct tcphdr *tcp = (struct tcphdr *) pkt_pull(pkt, sizeof(*tcp)); uint16_t src, dest; - char *src_name, *dest_name; + const char *src_name, *dest_name; bool v = false; if (tcp == NULL) @@ -110,7 +110,7 @@ static void tcp_less(struct pkt_buff *pkt) { struct tcphdr *tcp = (struct tcphdr *) pkt_pull(pkt, sizeof(*tcp)); uint16_t src, dest; - char *src_name, *dest_name; + const char *src_name, *dest_name; if (tcp == NULL) return; |