diff options
author | Debarshi Ray <debarshir@src.gnome.org> | 2012-04-01 05:08:27 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2012-04-02 17:05:42 +0800 |
commit | 0d03cd1f3b1d50824db84490ce6fe80e49e5f6b9 (patch) | |
tree | a7fca76ffcc1ff90178bc1d9bd217966583ec14a | |
parent | 12134c4cb2b0b59e01dbbe8932340fb1383a3047 (diff) | |
download | gsoc2013-empathy-0d03cd1f3b1d50824db84490ce6fe80e49e5f6b9.tar gsoc2013-empathy-0d03cd1f3b1d50824db84490ce6fe80e49e5f6b9.tar.gz gsoc2013-empathy-0d03cd1f3b1d50824db84490ce6fe80e49e5f6b9.tar.bz2 gsoc2013-empathy-0d03cd1f3b1d50824db84490ce6fe80e49e5f6b9.tar.lz gsoc2013-empathy-0d03cd1f3b1d50824db84490ce6fe80e49e5f6b9.tar.xz gsoc2013-empathy-0d03cd1f3b1d50824db84490ce6fe80e49e5f6b9.tar.zst gsoc2013-empathy-0d03cd1f3b1d50824db84490ce6fe80e49e5f6b9.zip |
goa-mc-plugin: fix variable name
https://bugzilla.gnome.org/show_bug.cgi?id=673263
-rw-r--r-- | goa-mc-plugin/mcp-account-manager-goa.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/goa-mc-plugin/mcp-account-manager-goa.c b/goa-mc-plugin/mcp-account-manager-goa.c index 659b6630b..911b2d6ca 100644 --- a/goa-mc-plugin/mcp-account-manager-goa.c +++ b/goa-mc-plugin/mcp-account-manager-goa.c @@ -452,7 +452,7 @@ account_is_in_goa (const McpAccountStorage *self, { McpAccountManagerGoaPrivate *priv = GET_PRIVATE (self); - return (g_hash_table_lookup (priv->accounts, acct) != NULL); + return (g_hash_table_lookup (priv->accounts, account) != NULL); } static gboolean |