summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorDenis Kenzior <denkenz@gmail.com>2019-04-30 11:38:36 -0500
committerDenis Kenzior <denkenz@gmail.com>2019-04-30 11:38:36 -0500
commit408d063f85f30d22af73234b20fb7216e7339b02 (patch)
tree3e85c6ef8e4977f889080c168257d247bfacefc8 /src
parent74dc62b1480fa7389d73f0a1dec4c75bbb512de6 (diff)
downloadofono-408d063f85f30d22af73234b20fb7216e7339b02.tar.gz
netmon: Fix logic error
Diffstat (limited to 'src')
-rw-r--r--src/netmon.c2
1 files changed, 1 insertions, 1 deletions
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)