From acb4e127c6f7add7576c4b138c5ab835c59c2d26 Mon Sep 17 00:00:00 2001 From: Denis Kenzior Date: Wed, 18 Nov 2009 10:00:04 -0600 Subject: [PATCH] Fix: Uncross the wires --- src/gprs.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gprs.c b/src/gprs.c index 7961029..3042a5f 100644 --- a/src/gprs.c +++ b/src/gprs.c @@ -368,7 +368,7 @@ static void pri_activate_callback(const struct ofono_error *error, return; } - ctx->active = FALSE; + ctx->active = TRUE; __ofono_dbus_pending_reply(&gc->pending, dbus_message_new_method_return(gc->pending)); @@ -401,7 +401,7 @@ static void pri_deactivate_callback(const struct ofono_error *error, void *data) return; } - ctx->active = TRUE; + ctx->active = FALSE; __ofono_dbus_pending_reply(&gc->pending, dbus_message_new_method_return(gc->pending)); -- 2.7.4