From 60ea0af73309d7f0962d9fe13ab9409f402d480a Mon Sep 17 00:00:00 2001 From: Mitchell Livingston Date: Mon, 5 Nov 2007 04:00:19 +0000 Subject: [PATCH] fix bug with setting port value in prefs --- macosx/PrefsController.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/macosx/PrefsController.m b/macosx/PrefsController.m index 79d9f7760..0b44480d0 100644 --- a/macosx/PrefsController.m +++ b/macosx/PrefsController.m @@ -222,7 +222,7 @@ return; } - [fDefaults setInteger: fPublicPort forKey: @"BindPort"]; + [fDefaults setInteger: port forKey: @"BindPort"]; tr_setBindPort(fHandle, port);