From b555f6057f5548691e043afb4f5e6e3050b9fd3b Mon Sep 17 00:00:00 2001 From: BytesGalore Date: Fri, 10 Apr 2015 09:40:18 +0200 Subject: [PATCH] [FINALLY REMOVE ME] fixed error resulted from the removed routing table, this will be fixed with #2782 merged --- sys/shell/commands/sc_rpl.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/sys/shell/commands/sc_rpl.c b/sys/shell/commands/sc_rpl.c index 9839b8c46062..1fce63dddce1 100644 --- a/sys/shell/commands/sc_rpl.c +++ b/sys/shell/commands/sc_rpl.c @@ -29,7 +29,9 @@ int _rpl_route_handler(int argc, char **argv) { (void) argc; (void) argv; - + (void) addr_str; + puts("DEPRECATED please use fibroute"); +/* rpl_routing_entry_t *rtable; rtable = rpl_get_routing_table(); if (rtable) { @@ -57,6 +59,6 @@ int _rpl_route_handler(int argc, char **argv) puts("No routing table available"); } puts("$"); - +*/ return 0; }