aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/exchange-operations
diff options
context:
space:
mode:
authorAhmed Sarfraaz <sarfraaz@src.gnome.org>2005-08-03 13:56:48 +0800
committerAhmed Sarfraaz <sarfraaz@src.gnome.org>2005-08-03 13:56:48 +0800
commit7652b7495730d95babc4d7c94886d12c29e7a2c7 (patch)
tree426f0abf46740da3828ca81993fecbde9a01a89f /plugins/exchange-operations
parent54f8da4d572015fe3049a5c4ae5a360328650d64 (diff)
downloadgsoc2013-evolution-7652b7495730d95babc4d7c94886d12c29e7a2c7.tar
gsoc2013-evolution-7652b7495730d95babc4d7c94886d12c29e7a2c7.tar.gz
gsoc2013-evolution-7652b7495730d95babc4d7c94886d12c29e7a2c7.tar.bz2
gsoc2013-evolution-7652b7495730d95babc4d7c94886d12c29e7a2c7.tar.lz
gsoc2013-evolution-7652b7495730d95babc4d7c94886d12c29e7a2c7.tar.xz
gsoc2013-evolution-7652b7495730d95babc4d7c94886d12c29e7a2c7.tar.zst
gsoc2013-evolution-7652b7495730d95babc4d7c94886d12c29e7a2c7.zip
Fix for build break
svn path=/trunk/; revision=29960
Diffstat (limited to 'plugins/exchange-operations')
-rw-r--r--plugins/exchange-operations/ChangeLog4
-rw-r--r--plugins/exchange-operations/exchange-folder.c4
2 files changed, 6 insertions, 2 deletions
diff --git a/plugins/exchange-operations/ChangeLog b/plugins/exchange-operations/ChangeLog
index 79443617e1..30001c4433 100644
--- a/plugins/exchange-operations/ChangeLog
+++ b/plugins/exchange-operations/ChangeLog
@@ -1,3 +1,7 @@
+2005-08-03 Sarfraaz Ahmed <asarfraaz@novell.com>
+
+ * exchange-folder.c : Fixed a build break. A typo.
+
2005-08-02 Shakti Sen <shprasad@blr.novell.com>
* Makefile.am: Included 'calendar' in INCLUDES and some .la in
diff --git a/plugins/exchange-operations/exchange-folder.c b/plugins/exchange-operations/exchange-folder.c
index 016d6bccfa..0419744f59 100644
--- a/plugins/exchange-operations/exchange-folder.c
+++ b/plugins/exchange-operations/exchange-folder.c
@@ -178,7 +178,7 @@ org_gnome_exchange_check_subscribed (EPlugin *ep, ECalPopupTargetSource *target)
source = e_source_selector_peek_primary_selection (E_SOURCE_SELECTOR (target->selector));
group = e_source_peek_group (source);
base_uri = e_source_group_peek_base_uri (group);
- if (!basu_uri || strcmp (base_uri, "exchange://"))
+ if (!base_uri || strcmp (base_uri, "exchange://"))
return;
ruri = (gchar *) e_source_peek_relative_uri (source);
@@ -414,7 +414,7 @@ org_gnome_exchange_folder_subscription (EPlugin *ep, EMMenuTargetSelect *target)
return;
case EXCHANGE_ACCOUNT_FOLDER_UNKNOWN_TYPE:
e_error_run (NULL, ERROR_DOMAIN ":folder-unknown-type", NULL);
- return;
+ return;
case EXCHANGE_ACCOUNT_FOLDER_PERMISSION_DENIED:
e_error_run (NULL, ERROR_DOMAIN ":folder-perm-error", NULL);
return;