Changeset 2288

Show
Ignore:
Timestamp:
06/28/07 04:50:37
Author:
murrayc
Message:

2007-06-28 Murray Cumming <murrayc@murrayc.com>

        • libtinymail-camel/camel-lite/camel/providers/imap/camel-imap-mess

age-cache.c: (camel_imap_message_cache_replace_with_wrapper):
Comment out unused variables to prevent warnings.

        • libtinymail-camel/camel-lite/camel/providers/imap/camel-imap-mess

age-cache.h: Actually declare
camel_imap_message_cache_replace_with_wrapper(), to avoid a warning
in came-imap-folder.c.

        • libtinymail-maemo/tny-maemo-conic-device.c:

(tny_maemo_conic_device_finalize): Add a debug printf here in case
this is the cause of disconnections.

        • libtinymail-maemo/tny-maemo-conic-device.h:

Do not include some unnecessary libconic headers.

        • tests/test-device-conic.c: New test.
Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/ChangeLog

    r2287 r2288  
     12007-06-28  Murray Cumming  <murrayc@murrayc.com> 
     2 
     3        * libtinymail-camel/camel-lite/camel/providers/imap/camel-imap-mess 
     4        age-cache.c: (camel_imap_message_cache_replace_with_wrapper): 
     5        Comment out unused variables to prevent warnings. 
     6        * libtinymail-camel/camel-lite/camel/providers/imap/camel-imap-mess 
     7        age-cache.h: Actually declare  
     8        camel_imap_message_cache_replace_with_wrapper(), to avoid a warning  
     9        in came-imap-folder.c. 
     10        * libtinymail-maemo/tny-maemo-conic-device.c: 
     11        (tny_maemo_conic_device_finalize): Add a debug printf here in case  
     12        this is the cause of disconnections. 
     13        * libtinymail-maemo/tny-maemo-conic-device.h: 
     14        Do not include some unnecessary libconic headers.  
     15        * tests/test-device-conic.c: New test. 
     16 
    1172007-06-27  Jose Dapena Paz  <jdapena@igalia.com> 
    218 
  • trunk/libtinymail-camel/camel-lite/camel/providers/imap/camel-imap-message-cache.c

    r2287 r2288  
    2222 * USA 
    2323 */ 
     24 
     25/* Define this so that we have strcasestr(). */ 
     26#ifndef _GNU_SOURCE 
     27#define _GNU_SOURCE 
     28#endif 
    2429 
    2530#include <config.h> 
     
    466471                                               CamelDataWrapper *wrapper, CamelException *ex) 
    467472{ 
    468         char *path, *key; 
     473        /* char *path, *key; */ 
    469474        CamelStream *stream; 
    470475        gchar *real = g_strdup_printf("%s/%s.purgetmp", cache->path, uid); 
  • trunk/libtinymail-camel/camel-lite/camel/providers/imap/camel-imap-message-cache.h

    r2287 r2288  
    111111                                             const char *dest_uid, const char *dest_part_spec); 
    112112 
     113void 
     114camel_imap_message_cache_replace_with_wrapper (CamelImapMessageCache *cache, 
     115                                               const char *uid, 
     116                                               CamelDataWrapper *wrapper, CamelException *ex); 
    113117 
    114118/* Standard Camel function */ 
  • trunk/libtinymail-maemo/tny-maemo-conic-device.c

    r2214 r2288  
    2222#include <glib-object.h> 
    2323#include <tny-maemo-conic-device.h> 
     24#include <conicevent.h> 
     25#include <coniciap.h> 
     26#include <conicconnection.h> 
     27#include <conicconnectionevent.h> 
    2428#include <string.h> /* For strcmp() */ 
    2529#include <stdio.h> /* for printf */ 
     
    562566tny_maemo_conic_device_finalize (GObject *obj) 
    563567{ 
     568        printf ("DEBUG: %s\n", __FUNCTION__); 
     569 
    564570        TnyMaemoConicDevicePriv *priv; 
    565571        priv   = TNY_MAEMO_CONIC_DEVICE_GET_PRIVATE (obj); 
  • trunk/libtinymail-maemo/tny-maemo-conic-device.h

    r1800 r2288  
    2525 
    2626#include <tny-device.h> 
    27 #include <conicevent.h> 
    2827#include <coniciap.h> 
    29 #include <conicconnection.h> 
    30 #include <conicconnectionevent.h> 
    3128 
    3229G_BEGIN_DECLS