~ubuntu-branches/ubuntu/maverick/evolution-data-server/maverick-updates

« back to all changes in this revision

Viewing changes to libedataserver/e-msgport.c

  • Committer: Bazaar Package Importer
  • Author(s): Sebastien Bacher
  • Date: 2009-07-27 16:04:20 UTC
  • mfrom: (1.1.70 upstream)
  • Revision ID: james.westby@ubuntu.com-20090727160420-dr27rzbz6ddjqo04
Tags: 2.27.5-0ubuntu1
* New upstream version: 
  Bug Fixes:
  Address Book:
  - #587558 - Removing a picture of a contact in an LDAP addressbook
              crashes evolution 
  - #589325 - Evolution Contacts reports ambiguous error on Google
              Contacts authentication failure with bad password 
  Calendar:
  - #572176 - Allow local iCal files to be selected as calendar source
  - #586342 - CalDAV backend does not support attachments 
  - #588857 - CalDAV for Google calendars should allow email notifications
  Mail:
  - #524219 (bnc) - Unable to read forward groupwise mails in other clients.
  - #588220 - Evolution crashed when starting with local account configured 
  - #588573 - NULL string comparison in camel-search-sql-sexp.c
  Miscellaneous:
  - #583374 - The broken Google calendar import should be replaced by
              the working CalDAV support 
  - #588277 - Unnecessary special-purpose configure flag 
  Other Fixes:
  Handle quota error messages. 
  Return the proper timezone to get the counts right in all timezones.
  CamelVeeFolder - pass exceptions to functions instead of NULL
  Migrate caldav, groupwise, http, weather backends to ECalBackendStore.   
  Translations

Show diffs side-by-side

added added

removed removed

Lines of Context:
837
837
 
838
838
        pthread_mutex_lock(&e->mutex);
839
839
 
840
 
        switch(e->type) {
 
840
        switch (e->type) {
841
841
        case E_THREAD_QUEUE:
842
842
        case E_THREAD_DROP:
843
843
                /* if we have a thread, 'kill' it */
1100
1100
 
1101
1101
        msg->reply_port = e->reply_port;
1102
1102
 
1103
 
        switch(e->type) {
 
1103
        switch (e->type) {
1104
1104
        case E_THREAD_QUEUE:
1105
1105
                /* if the queue is full, lose this new addition */
1106
1106
                if (g_async_queue_length(e->server_port->queue) < e->queue_limit) {
1293
1293
        gint ret;
1294
1294
        pthread_cond_t *cond = vcond;
1295
1295
 
1296
 
        switch(m->type) {
 
1296
        switch (m->type) {
1297
1297
        case E_MUTEX_SIMPLE:
1298
1298
                return pthread_cond_wait(cond, &m->mutex);
1299
1299
        case E_MUTEX_REC: