diff options
author | Sjoerd Simons <sjoerd.simons@collabora.co.uk> | 2009-08-27 17:01:57 +0100 |
---|---|---|
committer | Sjoerd Simons <sjoerd.simons@collabora.co.uk> | 2009-08-27 21:11:49 +0100 |
commit | 09a260ea67ff01a17877c53e43ff1af6f28a59b6 (patch) | |
tree | 97ed94b6e850a17b5a24a4fb6a6ffd34b912b350 /libempathy | |
parent | 698b2c1a3ba1f5d9a27d5c30520e0dd0e8bb92bf (diff) |
Only assume connected when we have neither Connman or NM
Diffstat (limited to 'libempathy')
-rw-r--r-- | libempathy/empathy-connectivity.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libempathy/empathy-connectivity.c b/libempathy/empathy-connectivity.c index 77c715a04..b65421664 100644 --- a/libempathy/empathy-connectivity.c +++ b/libempathy/empathy-connectivity.c @@ -230,7 +230,7 @@ empathy_connectivity_init (EmpathyConnectivity *connectivity) } #endif -#if !defined(HAVE_NM) || !defined(HAVE_CONNMAN) +#if !defined(HAVE_NM) && !defined(HAVE_CONNMAN) priv->connected = TRUE; #endif } |