commit 7554cdbf6effae771707ed56684736fa01d24381 Author: David Fifield david@bamsoftware.com Date: Tue Jul 17 05:43:21 2012 -0700
Output consistency. --- flashproxy.js | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/flashproxy.js b/flashproxy.js index 592074d..6d70fe7 100644 --- a/flashproxy.js +++ b/flashproxy.js @@ -457,7 +457,7 @@ function FlashProxy() {
/* Cease all network operations and prevent any future ones. */ this.disable = function() { - puts("disabling"); + puts("Disabling."); this.proxy_main = function() { }; this.make_proxy_pair = function(client_addr, relay_addr) { }; while (this.proxy_pairs.length > 0) @@ -466,7 +466,7 @@ function FlashProxy() { };
this.die = function() { - puts("die"); + puts("Dying."); this.badge.die(); }; }
tor-commits@lists.torproject.org