On these platforms (including DragonFly), get_default_gateway() would in some
cases return false. As get_default_gateway() is defined as a void function, and
none of the callers expect a return value -> just return without any value.
Signed-off-by: David Sommerseth <davids@redhat.com>
Acked-by: Gert Doering <gert@greenie.muc.de>
warn("writing to routing socket");
gc_free (&gc);
close(s);
- return false;
+ return;
}
do {
else
{
gc_free (&gc);
- return false;
+ return;
}
warn("writing to routing socket");
gc_free (&gc);
close(s);
- return false;
+ return;
}
do {
else
{
gc_free (&gc);
- return false;
+ return;
}