From 408d063f85f30d22af73234b20fb7216e7339b02 Mon Sep 17 00:00:00 2001 From: Denis Kenzior Date: Tue, 30 Apr 2019 11:38:36 -0500 Subject: [PATCH] netmon: Fix logic error --- src/netmon.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/netmon.c b/src/netmon.c index 62e0ec0b..6c19df52 100644 --- a/src/netmon.c +++ b/src/netmon.c @@ -288,7 +288,7 @@ static DBusMessage *netmon_get_serving_cell_info(DBusConnection *conn, { struct ofono_netmon *netmon = data; - if (!netmon->driver && !netmon->driver->request_update) + if (!netmon->driver->request_update) return __ofono_error_not_implemented(msg); if (netmon->pending)