From ec34995cffd5f5079d02037e406f0df932ce52ed Mon Sep 17 00:00:00 2001 From: Charles Kerr Date: Tue, 18 Mar 2008 02:30:35 +0000 Subject: [PATCH] make the port forwarding error message text a little more helpful --- libtransmission/shared.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libtransmission/shared.c b/libtransmission/shared.c index 07bed66c9..1b56ab7de 100644 --- a/libtransmission/shared.c +++ b/libtransmission/shared.c @@ -96,7 +96,7 @@ natPulse( tr_shared * s ) tr_ninf( getKey(), _( "State changed from \"%s\" to \"%s\"" ), getNatStateStr(s->natStatus), getNatStateStr(status) ); s->natStatus = status; if( status == TR_NAT_TRAVERSAL_ERROR ) - tr_nerr( getKey(), _( "Port forwarding failed. See debug messages for more information." ) ); + tr_nerr( getKey(), _( "Port forwarding failed. Turn on debug messages and restart for more information." ) ); } }