~ubuntu-branches/ubuntu/lucid/seahorse/lucid

« back to all changes in this revision

Viewing changes to libseahorse/seahorse-servers.c

  • Committer: Bazaar Package Importer
  • Author(s): Sebastien Bacher
  • Date: 2009-03-02 22:41:25 UTC
  • mfrom: (1.2.42 upstream)
  • Revision ID: james.westby@ubuntu.com-20090302224125-add03qz18yhugh5s
Tags: 2.25.92-0ubuntu1
* New upstream version:
  - Fix crash when typing in a custom key server URL.
  - Searching by key identifiers now shows results. (lp: #316551)
  - Don't crash when loading a PGP key that loads the secret 
    part before the public part.
  - Disable interactive tree search in key manager.
  - Fix issues with object IDs, crashes and other inconsistencies
    when accessed via DBus.
  - Add libcryptui documentation
  - Reference counting fixes.
  - Remove use of GTK+ deprecated symbols.
  - Use proper GTK+ stock item names.
  - Translation fixes.
  - Collapse 'Advanced Options' in PGP key generate dialog by default.
* debian/seahorse.install:
  - install the translations

Show diffs side-by-side

added added

removed removed

Lines of Context:
155
155
        parts = g_strsplit (uri, ":", 2);
156
156
        if (parts && parts[0]) {
157
157
                info = g_hash_table_lookup (server_types, parts[0]);
158
 
                if (info->validator && (info->validator) (uri))
 
158
                if (info && info->validator && (info->validator) (uri))
159
159
                        ret = TRUE;
160
160
        }
161
161