From 7269cdbf0383c04f8013ff500e9015e1b8906aa6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cenk=20G=C3=BCndo=C4=9Fan?= Date: Sat, 5 Dec 2015 15:56:21 +0100 Subject: [PATCH] rpl: fix netapi commands handling --- sys/net/gnrc/routing/rpl/gnrc_rpl.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sys/net/gnrc/routing/rpl/gnrc_rpl.c b/sys/net/gnrc/routing/rpl/gnrc_rpl.c index beeba45103..0a90ecfba4 100644 --- a/sys/net/gnrc/routing/rpl/gnrc_rpl.c +++ b/sys/net/gnrc/routing/rpl/gnrc_rpl.c @@ -195,9 +195,10 @@ static void *_event_loop(void *args) _receive((gnrc_pktsnip_t *)msg.content.ptr); break; case GNRC_NETAPI_MSG_TYPE_SND: + break; case GNRC_NETAPI_MSG_TYPE_GET: case GNRC_NETAPI_MSG_TYPE_SET: - DEBUG("RPL: reply to unsupported recv/get/set\n"); + DEBUG("RPL: reply to unsupported get/set\n"); reply.content.value = -ENOTSUP; msg_reply(&msg, &reply); break;