~ubuntu-branches/ubuntu/saucy/evolution-data-server/saucy

« back to all changes in this revision

Viewing changes to camel/camel-network-service.c

  • Committer: Package Import Robot
  • Author(s): Chris Coulson
  • Date: 2012-10-08 12:58:16 UTC
  • mfrom: (181.1.7 quantal)
  • Revision ID: package-import@ubuntu.com-20121008125816-i3n76e8c0m64e7xp
Tags: 3.6.0-0ubuntu2
* Fix LP: #1038047 part 1 - Don't abort in e_source_registry_new* when a
  problem occurs connecting to the Dbus service
  - add debian/patches/dont-abort-in-e_source_registry_new.patch
  - update debian/patches/series
* Fix LP: #1038047 part 2 - libedataserver depends on
  evolution-data-server-common to ensure that the GSettings schemas are
  present
  - update debian/control

Show diffs side-by-side

added added

removed removed

Lines of Context:
53
53
        gint status;
54
54
 
55
55
        session = camel_service_get_session (CAMEL_SERVICE (service));
56
 
        settings = camel_service_get_settings (CAMEL_SERVICE (service));
 
56
        settings = camel_service_ref_settings (CAMEL_SERVICE (service));
57
57
        g_return_val_if_fail (CAMEL_IS_NETWORK_SETTINGS (settings), NULL);
58
58
 
59
59
        network_settings = CAMEL_NETWORK_SETTINGS (settings);
61
61
        host = camel_network_settings_dup_host (network_settings);
62
62
        port = camel_network_settings_get_port (network_settings);
63
63
 
 
64
        g_object_unref (settings);
 
65
 
64
66
        service_name = camel_network_service_get_service_name (service, method);
65
67
        default_port = camel_network_service_get_default_port (service, method);
66
68