diff options
author | Milan Crha <mcrha@redhat.com> | 2011-10-25 15:00:56 +0800 |
---|---|---|
committer | Milan Crha <mcrha@redhat.com> | 2011-10-25 15:00:56 +0800 |
commit | 6f66c05f0aa6e9952d62f00509716c0a6f891ea8 (patch) | |
tree | 26dfd0e328e303f4f146380dc6d617965b122bee /modules | |
parent | 56ebfe2f3f1bbcd05c2ac78821edd06c986b40e6 (diff) | |
download | gsoc2013-evolution-6f66c05f0aa6e9952d62f00509716c0a6f891ea8.tar.gz gsoc2013-evolution-6f66c05f0aa6e9952d62f00509716c0a6f891ea8.tar.zst gsoc2013-evolution-6f66c05f0aa6e9952d62f00509716c0a6f891ea8.zip |
Fix a build break after recent changes
Diffstat (limited to 'modules')
-rw-r--r-- | modules/online-accounts/camel-sasl-xoauth.c | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/modules/online-accounts/camel-sasl-xoauth.c b/modules/online-accounts/camel-sasl-xoauth.c index e2ba57287a..edf5c6eec3 100644 --- a/modules/online-accounts/camel-sasl-xoauth.c +++ b/modules/online-accounts/camel-sasl-xoauth.c @@ -16,9 +16,14 @@ * */ +#ifdef HAVE_CONFIG_H +#include <config.h> +#endif + +#include <e-util/e-account-utils.h> + #include "camel-sasl-xoauth.h" -#include <config.h> #include <glib/gi18n-lib.h> #define GOA_API_IS_SUBJECT_TO_CHANGE @@ -368,7 +373,7 @@ sasl_xoauth_challenge_sync (CamelSasl *sasl, if (goa_client == NULL) return NULL; - url = camel_url_new (account->store->url, error); + url = camel_url_new (account->source->url, error); if (url == NULL) return NULL; |