summaryrefslogtreecommitdiff
path: root/rakia/debug.c
diff options
context:
space:
mode:
authorDavid Laban <david.laban@collabora.co.uk>2011-04-01 17:39:13 +0100
committerDavid Laban <david.laban@collabora.co.uk>2011-05-30 20:47:46 -0400
commitb59ebd6b72a3229e8bea86f1a0a741529d2c0fdb (patch)
tree5a9bd0c6bc0dc76135042e78cb9d3a39dbed4fc1 /rakia/debug.c
parentd960b6a266e60e19480bb9f192448f05d8463463 (diff)
s/TPSIP/RAKIA/g
How did we fail to spot this during 'Rename project to telepathy-rakia' (8dcddb61752cfa140df30c94b54bd02684419323)? That's embarassing. Also, fix whitespace in README
Diffstat (limited to 'rakia/debug.c')
-rw-r--r--rakia/debug.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/rakia/debug.c b/rakia/debug.c
index 11f7b6a..05ca9e8 100644
--- a/rakia/debug.c
+++ b/rakia/debug.c
@@ -33,18 +33,18 @@
static RakiaDebugFlags rakia_debug_flags = 0;
static const GDebugKey rakia_debug_keys[] = {
- { "media-channel", TPSIP_DEBUG_MEDIA },
- { "connection", TPSIP_DEBUG_CONNECTION },
- { "im", TPSIP_DEBUG_IM },
- { "events", TPSIP_DEBUG_EVENTS },
- { "sofia", TPSIP_DEBUG_SOFIA },
+ { "media-channel", RAKIA_DEBUG_MEDIA },
+ { "connection", RAKIA_DEBUG_CONNECTION },
+ { "im", RAKIA_DEBUG_IM },
+ { "events", RAKIA_DEBUG_EVENTS },
+ { "sofia", RAKIA_DEBUG_SOFIA },
};
void rakia_debug_set_flags_from_env ()
{
const gchar *flags_string;
- flags_string = g_getenv ("TPSIP_DEBUG");
+ flags_string = g_getenv ("RAKIA_DEBUG");
if (flags_string == NULL)
flags_string = g_getenv ("RAKIA_DEBUG");
@@ -156,7 +156,7 @@ rakia_sofia_log_handler (void *logdata, const char *format, va_list args)
if (buf->str[buf->len - 1] == '\n')
{
g_string_truncate (buf, buf->len - 1);
- rakia_log (TPSIP_DEBUG_SOFIA, G_LOG_LEVEL_DEBUG, "%s", buf->str);
+ rakia_log (RAKIA_DEBUG_SOFIA, G_LOG_LEVEL_DEBUG, "%s", buf->str);
g_string_truncate (buf, 0);
}
#endif