From 2f9054cb70fd806c689a3fc7e663112a2da47470 Mon Sep 17 00:00:00 2001 From: Martine Lenders Date: Fri, 15 May 2015 22:17:02 +0200 Subject: [PATCH] ng_nettype: adapt for new ethertype --- sys/include/net/ng_nettype.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/include/net/ng_nettype.h b/sys/include/net/ng_nettype.h index ab2629787..b0bf679b2 100644 --- a/sys/include/net/ng_nettype.h +++ b/sys/include/net/ng_nettype.h @@ -130,7 +130,7 @@ static inline uint16_t ng_nettype_to_ethertype(ng_nettype_t type) return NG_ETHERTYPE_IPV6; #endif default: - return NG_ETHERTYPE_RESERVED; + return NG_ETHERTYPE_UNKNOWN; } }