~ubuntu-branches/ubuntu/precise/seahorse/precise-proposed

« back to all changes in this revision

Viewing changes to libseahorse/seahorse-dns-sd.c

  • Committer: Package Import Robot
  • Author(s): Didier Roche
  • Date: 2011-09-26 17:22:56 UTC
  • mfrom: (1.2.65 upstream)
  • Revision ID: package-import@ubuntu.com-20110926172256-fqxxr417twt0lnfq
Tags: 3.2.0-0ubuntu1
* New upstream release
  - Fix DNS-SD key sharing crasher and make compatible with seahorse-sharing
  - Removed unused spec file
  - Updated translations

Show diffs side-by-side

added added

removed removed

Lines of Context:
38
38
#define DEBUG_FLAG SEAHORSE_DEBUG_DNSSD
39
39
#include "seahorse-debug.h"
40
40
 
41
 
#define HKP_SERVICE_TYPE "_pgpkey-hkp._tcp."
 
41
#define HKP_SERVICE_TYPE "_pgpkey-hkp._tcp"
42
42
 
43
43
/* 
44
44
 * DEBUG: Define if we want to show discoveries from this
414
414
        while (g_hash_table_iter_next (&iter, &key, NULL))
415
415
                g_ptr_array_add (result, g_strdup (key));
416
416
 
 
417
        g_ptr_array_add (result, NULL);
417
418
        return (gchar **)g_ptr_array_free (result, FALSE);
418
419
}
419
420