1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-27 01:45:23 +00:00

fix build break

This commit is contained in:
v2ray 2016-08-18 08:24:47 +02:00
parent 39737f6fc1
commit 786775ea80
No known key found for this signature in database
GPG Key ID: 7251FFA14BB18169

View File

@ -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)
}