Changeset 2205

Show
Ignore:
Timestamp:
06/18/07 13:44:05
Author:
murrayc
Message:

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

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

(on_connection_event), (tny_maemo_conic_device_get_iap_list):
Fix some warnings reported in tinymail trac ticket #66:
http://tinymail.org/trac/tinymail/ticket/66

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/ChangeLog

    r2204 r2205  
     12007-06-18  Murray Cumming  <murrayc@murrayc.com> 
     2 
     3        * libtinymail-maemo/tny-maemo-conic-device.c: 
     4        (on_connection_event), (tny_maemo_conic_device_get_iap_list): 
     5        Fix some warnings reported in tinymail trac ticket #66: 
     6        http://tinymail.org/trac/tinymail/ticket/66 
     7 
    182007-06-18  Philip Van Hoof  <pvanhoof@gnome.org> 
    29 
  • trunk/libtinymail-camel/camel-lite/ChangeLog

    r2113 r2205  
     12007-06-18  set REAL_NAME environment variable  <murrayc@murrayc-desktop> 
     2 
     3        reviewed by: <delete if not using a buddy> 
     4 
     5        * COPYING: 
     6 
    17Note: Please use this ChangeLog file only for merge changes (from upstream to 
    28this version, and the other way around). Changes to camel-lite that are 
  • trunk/libtinymail-maemo/tny-maemo-conic-device.c

    r2067 r2205  
    2222#include <glib-object.h> 
    2323#include <tny-maemo-conic-device.h> 
     24#include <string.h> /* For strcmp() */ 
    2425 
    2526#ifdef MAEMO_CONIC_DUMMY 
     
    137138                        priv->attempting_connection = FALSE; 
    138139                         
    139                 g_message ("new status: DISCONNECTED", priv->iap); 
     140                g_message ("new status: DISCONNECTED"); 
    140141                break; 
    141142        case CON_IC_STATUS_DISCONNECTING: 
    142143                is_online = FALSE; 
    143                 g_message ("new status: DISCONNECTING", priv->iap); 
     144                g_message ("new status: DISCONNECTING"); 
    144145                break; 
    145146        default: 
     
    337338tny_maemo_conic_device_get_iap_list (TnyMaemoConicDevice *self) 
    338339{ 
    339         TnyMaemoConicDevicePriv *priv; 
    340          
    341340        g_return_val_if_fail (TNY_IS_MAEMO_CONIC_DEVICE(self), NULL); 
    342341 
     
    370369         return result; 
    371370#else 
    372         priv   = TNY_MAEMO_CONIC_DEVICE_GET_PRIVATE (self); 
     371        TnyMaemoConicDevicePriv *priv  
     372                = TNY_MAEMO_CONIC_DEVICE_GET_PRIVATE (self); 
    373373        g_return_val_if_fail (priv->cnx, NULL); 
    374374