Sign Up
Log In
Log In
or
Sign Up
Places
All Projects
Status Monitor
Collapse sidebar
home:pchenthill
evolution-data-server
eds-warnings.patch
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
File eds-warnings.patch of Package evolution-data-server
Index: calendar/backends/contacts/e-cal-backend-contacts.c ================================================================================ --- calendar/backends/contacts/e-cal-backend-contacts.c +++ calendar/backends/contacts/e-cal-backend-contacts.c @@ -377,7 +377,7 @@ static struct icaltimetype cdate_to_icaltime (EContactDate *cdate) { - struct icaltimetype ret; + struct icaltimetype ret = icaltime_null_time(); /*FIXME: this is a really _ugly_ (temporary) hack * since several functions are still depending on the epoch, --- calendar/backends/groupwise/e-cal-backend-groupwise-utils.h +++ calendar/backends/groupwise/e-cal-backend-groupwise-utils.h @@ -37,6 +37,7 @@ * Items management */ EGwItem *e_gw_item_new_from_cal_component (const char *container, ECalBackendGroupwise *cbgw, ECalComponent *comp); +EGwItem *e_gw_item_new_for_delegate_from_cal (ECalBackendGroupwise *cbgw, ECalComponent *comp); ECalComponent *e_gw_item_to_cal_component (EGwItem *item, ECalBackendGroupwise *cbgw); void e_gw_item_set_changes (EGwItem *item, EGwItem *cached_item); --- camel/providers/groupwise/camel-groupwise-folder.c +++ camel/providers/groupwise/camel-groupwise-folder.c @@ -1603,7 +1609,7 @@ CamelGroupwiseStorePrivate *priv = gw_store->priv; CamelOfflineStore *offline = (CamelOfflineStore *) folder->parent_store; CamelAddress *recipients; - EGwConnectionStatus status; + EGwConnectionStatus status = E_GW_CONNECTION_STATUS_OK; EGwConnection *cnc; EGwItem *item; char *id; --- camel/providers/imap/camel-imap-store.c +++ camel/providers/imap/camel-imap-store.c @@ -667,6 +667,9 @@ } #ifdef HAVE_SSL + /* as soon as we send a STARTTLS command, all hope is lost of a clean QUIT if problems arise */ + clean_quit = FALSE; + if (!(store->capabilities & IMAP_CAPABILITY_STARTTLS)) { camel_exception_setv (ex, CAMEL_EXCEPTION_SYSTEM, _("Failed to connect to IMAP server %s in secure mode: %s"), @@ -675,9 +678,6 @@ goto exception; } - /* as soon as we send a STARTTLS command, all hope is lost of a clean QUIT if problems arise */ - clean_quit = FALSE; - response = camel_imap_command (store, NULL, ex, "STARTTLS"); if (!response) { camel_object_unref (store->istream); --- camel/providers/pop3/camel-pop3-store.c +++ camel/providers/pop3/camel-pop3-store.c @@ -211,6 +211,9 @@ } #ifdef HAVE_SSL + /* as soon as we send a STLS command, all hope is lost of a clean QUIT if problems arise */ + clean_quit = FALSE; + if (!(store->engine->capa & CAMEL_POP3_CAP_STLS)) { camel_exception_setv (ex, CAMEL_EXCEPTION_SYSTEM, _("Failed to connect to POP server %s in secure mode: %s"), @@ -218,9 +221,6 @@ goto stls_exception; } - /* as soon as we send a STLS command, all hope is lost of a clean QUIT if problems arise */ - clean_quit = FALSE; - pc = camel_pop3_engine_command_new (store->engine, 0, NULL, NULL, "STLS\r\n"); while (camel_pop3_engine_iterate (store->engine, NULL) > 0) ; --- libdb/dbm/dbm.c +++ libdb/dbm/dbm.c @@ -128,7 +128,8 @@ if (__cur_db == NULL) { __db_no_open(); - item.dptr = 0; + item.dptr = NULL; + item.dsize = 0; return (item); } return (dbm_fetch(__cur_db, key)); @@ -141,7 +142,8 @@ if (__cur_db == NULL) { __db_no_open(); - item.dptr = 0; + item.dptr = NULL; + item.dsize = 0; return (item); } return (dbm_firstkey(__cur_db)); @@ -157,7 +159,8 @@ if (__cur_db == NULL) { __db_no_open(); - item.dptr = 0; + item.dptr = NULL; + item.dsize = 0; return (item); } return (dbm_nextkey(__cur_db));
Locations
Projects
Search
Status Monitor
Help
OpenBuildService.org
Documentation
API Documentation
Code of Conduct
Contact
Support
@OBShq
Terms
openSUSE Build Service is sponsored by
The Open Build Service is an
openSUSE project
.
Sign Up
Log In
Places
Places
All Projects
Status Monitor