Skip to content
Snippets Groups Projects
Commit e9cbadd3 authored by Martine Lenders's avatar Martine Lenders
Browse files

shell: sc_icmpv6_echo: don't fail if packet buffer is full

parent d5284948
No related branches found
No related tags found
No related merge requests found
......@@ -213,7 +213,7 @@ int _icmpv6_ping(int argc, char **argv)
if (pkt == NULL) {
puts("error: packet buffer full");
return 1;
continue;
}
_set_payload(pkt->data, payload_len);
......@@ -223,7 +223,7 @@ int _icmpv6_ping(int argc, char **argv)
if (pkt == NULL) {
puts("error: packet buffer full");
return 1;
continue;
}
vtimer_now(&start);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment