Browse Source

Fix: typo in error message

Rod Hynes 11 years ago
parent
commit
53c1850042
1 changed files with 2 additions and 1 deletions
  1. 2 1
      psiphon/controller.go

+ 2 - 1
psiphon/controller.go

@@ -89,9 +89,10 @@ func (controller *Controller) Run(shutdownBroadcast <-chan struct{}) {
 		return
 	}
 	defer socksProxy.Close()
+
 	httpProxy, err := NewHttpProxy(controller.config, controller)
 	if err != nil {
-		Notice(NOTICE_ALERT, "error initializing local SOCKS proxy: %s", err)
+		Notice(NOTICE_ALERT, "error initializing local HTTP proxy: %s", err)
 		return
 	}
 	defer httpProxy.Close()