# HG changeset patch # User renatofilho # Date 1164913437 0 # Node ID ae6deaca5e7b704be3caa599dc947df4e09c5a3a # Parent 4b1889efb573bb9c7e9898631be9b0f6453a1702 [svn r151] remove debug messages diff -r 4b1889efb573 -r ae6deaca5e7b gmyth/src/gmyth_debug.h --- a/gmyth/src/gmyth_debug.h Thu Nov 30 18:09:38 2006 +0000 +++ b/gmyth/src/gmyth_debug.h Thu Nov 30 19:03:57 2006 +0000 @@ -29,6 +29,7 @@ #include #include +#include G_BEGIN_DECLS diff -r 4b1889efb573 -r ae6deaca5e7b gmyth/src/gmyth_socket.c --- a/gmyth/src/gmyth_socket.c Thu Nov 30 18:09:38 2006 +0000 +++ b/gmyth/src/gmyth_socket.c Thu Nov 30 19:03:57 2006 +0000 @@ -892,7 +892,6 @@ buffer = g_new0 (gchar, len+1); - g_debug ("BUFF %s : len %d : MYTH_PROTOCOL_FIELD_SIZE %d", buffer, len, MYTH_PROTOCOL_FIELD_SIZE); bytes_read = 0; io_status = g_io_channel_read_chars( gmyth_socket->sd_io_ch, buffer, len, &bytes_read, &error); buffer[bytes_read] = '\0'; diff -r 4b1889efb573 -r ae6deaca5e7b gmyth/src/gmyth_uri.c --- a/gmyth/src/gmyth_uri.c Thu Nov 30 18:09:38 2006 +0000 +++ b/gmyth/src/gmyth_uri.c Thu Nov 30 19:03:57 2006 +0000 @@ -161,7 +161,6 @@ { gboolean ret = FALSE; - g_debug ("URI: %p PROTO: %p", uri->uri, uri->protocol); g_return_val_if_fail( uri != NULL && uri->uri != NULL && uri->protocol != NULL, FALSE ); if ( gmyth_strstr( uri->uri->str, GMYTH_URI_PROTOCOL_DELIM ) == 0 || strlen(uri->protocol->str) > 0 ) @@ -227,7 +226,6 @@ protoIdx = gmyth_strstr (value, GMYTH_URI_PROTOCOL_DELIM); if (0 < protoIdx) { uri->protocol = g_string_new_len (value, protoIdx); - g_debug ("PROTO: %s IDX: %d", uri->protocol->str, protoIdx); currIdx += protoIdx + strlen( GMYTH_URI_PROTOCOL_DELIM ); }