diff options
author | Tobias Klauser <tklauser@distanz.ch> | 2015-11-16 09:07:54 +0100 |
---|---|---|
committer | Tobias Klauser <tklauser@distanz.ch> | 2015-11-16 09:07:54 +0100 |
commit | 48493306d27a1e2f7750228a37c32e892ffbb310 (patch) | |
tree | ad05f41259f07f695498c83e14aad95c6ab7c97c /proto_ethernet.c | |
parent | 3d84a7208988ad641599271d5bfde078c2fc9b4c (diff) |
lookup: Return const char * from all lookup functions
Signed-off-by: Tobias Klauser <tklauser@distanz.ch>
Diffstat (limited to 'proto_ethernet.c')
-rw-r--r-- | proto_ethernet.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/proto_ethernet.c b/proto_ethernet.c index 47730fc..9bb0042 100644 --- a/proto_ethernet.c +++ b/proto_ethernet.c @@ -40,7 +40,7 @@ static const char *ether_lookup_addr(const uint8_t *mac) static void ethernet(struct pkt_buff *pkt) { - char *type; + const char *type; uint8_t *src_mac, *dst_mac; struct ethhdr *eth = (struct ethhdr *) pkt_pull(pkt, sizeof(*eth)); |