From 786775ea80bc155146e9c6888b691e3900751c44 Mon Sep 17 00:00:00 2001 From: v2ray Date: Thu, 18 Aug 2016 08:24:47 +0200 Subject: [PATCH] fix build break --- shell/point/config.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/shell/point/config.go b/shell/point/config.go index 0d02bffa..2813e5ae 100644 --- a/shell/point/config.go +++ b/shell/point/config.go @@ -3,6 +3,7 @@ package point import ( "github.com/v2ray/v2ray-core/app/dns" "github.com/v2ray/v2ray-core/app/router" + "github.com/v2ray/v2ray-core/common" "github.com/v2ray/v2ray-core/common/log" v2net "github.com/v2ray/v2ray-core/common/net" "github.com/v2ray/v2ray-core/transport" @@ -82,7 +83,7 @@ var ( func LoadConfig(init string) (*Config, error) { if configLoader == nil { - return nil, ErrBadConfiguration + return nil, common.ErrBadConfiguration } return configLoader(init) }