1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2025-03-15 16:29:34 +00:00

(trunk daemon) fix error where the code fell out-of-sync with the RPC spec. reported by Elbandi

This commit is contained in:
Charles Kerr 2009-06-25 00:26:40 +00:00
parent 7274c24e44
commit 80987859a7

View file

@ -850,7 +850,7 @@ printSession( tr_benc * top )
printf( " Listenport: %" PRId64 "\n", i );
if( tr_bencDictFindBool( args, "port-forwarding-enabled", &boolVal ) )
printf( " Portforwarding enabled: %s\n", ( boolVal ? "Yes" : "No" ) );
if( tr_bencDictFindBool( args, "pex-allowed", &boolVal ) )
if( tr_bencDictFindBool( args, "pex-enabled", &boolVal ) )
printf( " Peer exchange allowed: %s\n", ( boolVal ? "Yes" : "No" ) );
if( tr_bencDictFindStr( args, "encryption", &str ) )
printf( " Encryption: %s\n", str );