From: Charles Kerr Date: Tue, 8 Sep 2009 20:02:51 +0000 (+0000) Subject: fix r9073 oops; I committed a few debugging changes by accident too X-Git-Tag: 1.80b5~780 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9a02f9e48eead9fe4a19f8ced0327dc3e3221b59;p=transmission fix r9073 oops; I committed a few debugging changes by accident too --- diff --git a/configure.ac b/configure.ac index 5033f6dfa..d3fa88840 100644 --- a/configure.ac +++ b/configure.ac @@ -320,7 +320,7 @@ dnl it should be safe to re-edit 0.40 back down to 0.23 use_nls=no if test "x$enable_nls" = "xyes" ; then use_nls=yes - IT_PROG_INTLTOOL([0.35.0],[no-xml]) + IT_PROG_INTLTOOL([0.40.0],[no-xml]) AC_CHECK_HEADERS([libintl.h]) GETTEXT_PACKAGE=transmission AC_SUBST(GETTEXT_PACKAGE) diff --git a/libtransmission/peer-mgr.c b/libtransmission/peer-mgr.c index fec1cad8f..ea03b611e 100644 --- a/libtransmission/peer-mgr.c +++ b/libtransmission/peer-mgr.c @@ -452,7 +452,6 @@ tr_peerMgrNew( tr_session * session ) tr_peerMgr * m = tr_new0( tr_peerMgr, 1 ); m->session = session; m->incomingHandshakes = TR_PTR_ARRAY_INIT; -fprintf( stderr, "sizeof(tr_pex) is %d\n", (int)sizeof(tr_pex) ); return m; } diff --git a/libtransmission/session.c b/libtransmission/session.c index 182ce31d8..1356d3951 100644 --- a/libtransmission/session.c +++ b/libtransmission/session.c @@ -582,8 +582,6 @@ tr_sessionInit( const char * tag, tr_session * session; struct init_data data; -fprintf( stderr, "sizeof(tr_address) is %d\n", (int)sizeof(tr_address) ); - assert( tr_bencIsDict( clientSettings ) ); /* initialize the bare skeleton of the session object */