~ubuntu-branches/ubuntu/utopic/telepathy-rakia/utopic

« back to all changes in this revision

Viewing changes to rakia/debug.c

  • Committer: Package Import Robot
  • Author(s): Laurent Bigonville
  • Date: 2012-05-09 00:21:34 UTC
  • mfrom: (1.1.1)
  • Revision ID: package-import@ubuntu.com-20120509002134-h56pptxm80rmuevl
Tags: 0.7.4-1
* New upstream release
  - Bump build-dependencies
* debian/control:
  - Bump Standards-Version to 3.9.3 (no further changes)

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
static RakiaDebugFlags rakia_debug_flags = 0;
30
30
 
31
31
static const GDebugKey rakia_debug_keys[] = {
32
 
  { "media-channel", RAKIA_DEBUG_MEDIA },
 
32
  { "media",         RAKIA_DEBUG_MEDIA },
33
33
  { "connection",    RAKIA_DEBUG_CONNECTION },
34
34
  { "im",            RAKIA_DEBUG_IM },
35
35
  { "events",        RAKIA_DEBUG_EVENTS },
36
36
  { "sofia",         RAKIA_DEBUG_SOFIA },
37
37
  { "utilities",     RAKIA_DEBUG_UTILITIES },
 
38
  { "call",          RAKIA_DEBUG_CALL },
38
39
};
39
40
 
40
41
static GHashTable *flag_to_domains = NULL;
106
107
  if (flag_to_domains == NULL)
107
108
    return;
108
109
 
109
 
  g_hash_table_destroy (flag_to_domains);
 
110
  g_hash_table_unref (flag_to_domains);
110
111
  flag_to_domains = NULL;
111
112
}
112
113