From 72ddf1404695cc91b2d684acda7c4fdd74a29602 Mon Sep 17 00:00:00 2001 From: Tony Espy Date: Thu, 19 Nov 2015 17:16:30 -0500 Subject: plugins: rm unneeded exits/sleeps from ril plugin --- plugins/ril.c | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) (limited to 'plugins') diff --git a/plugins/ril.c b/plugins/ril.c index 7820be4c..44714e4d 100644 --- a/plugins/ril.c +++ b/plugins/ril.c @@ -142,11 +142,10 @@ static void ril_radio_state_changed(struct ril_msg *message, gpointer user_data) * too fast re-spawns, then exit with error to make * upstart re-start ofono. */ - if (rd->ofono_online) { + if (rd->ofono_online) ofono_error("%s: radio self-powered off!", __func__); - exit(1); - } + break; } } @@ -397,8 +396,8 @@ static gboolean connect_rild(gpointer user_data) if (create_gril(modem) < 0) return TRUE; } else { - ofono_error("Exiting, can't connect to rild."); - exit(0); + ofono_error("Failed to connect to rild."); + return TRUE; } return FALSE; -- cgit v1.2.3