diff --git a/apps/shell/shell-ping.c b/apps/shell/shell-ping.c index aa3e73050..135ac5d4c 100644 --- a/apps/shell/shell-ping.c +++ b/apps/shell/shell-ping.c @@ -30,7 +30,7 @@ * * Author: Adam Dunkels * - * $Id: shell-ping.c,v 1.2 2009/03/07 09:32:41 adamdunkels Exp $ + * $Id: shell-ping.c,v 1.3 2010/03/17 12:27:52 joxe Exp $ */ #include @@ -70,9 +70,9 @@ send_ping(uip_ipaddr_t *dest_addr) UIP_IP_BUF->tcflow = 1; UIP_IP_BUF->flow = 0; UIP_IP_BUF->proto = UIP_PROTO_ICMP6; - UIP_IP_BUF->ttl = uip_netif_physical_if.cur_hop_limit; + UIP_IP_BUF->ttl = uip_ds6_if.cur_hop_limit; uip_ipaddr_copy(&UIP_IP_BUF->destipaddr, dest_addr); - uip_netif_select_src(&UIP_IP_BUF->srcipaddr, &UIP_IP_BUF->destipaddr); + uip_ds6_select_src(&UIP_IP_BUF->srcipaddr, &UIP_IP_BUF->destipaddr); UIP_ICMP_BUF->type = ICMP6_ECHO_REQUEST; UIP_ICMP_BUF->icode = 0;