summaryrefslogtreecommitdiff
path: root/libnetwork/default_gateway.go
diff options
context:
space:
mode:
authorBrian Goff <cpuguy83@gmail.com>2021-04-06 00:24:47 +0000
committerBrian Goff <cpuguy83@gmail.com>2021-06-01 21:51:23 +0000
commita0a473125bad04b66042aaafb331243dfd2d77f9 (patch)
tree164f96375408f0221d26ed2acfb3dc0a8b7e574c /libnetwork/default_gateway.go
parent51650935705f1dc93ff9e363fd1b6c98e67b48c5 (diff)
downloaddocker-a0a473125bad04b66042aaafb331243dfd2d77f9.tar.gz
Fix libnetwork imports
After moving libnetwork to this repo, we need to update all the import paths for libnetwork to point to docker/docker/libnetwork instead of docker/libnetwork. This change implements that. Signed-off-by: Brian Goff <cpuguy83@gmail.com>
Diffstat (limited to 'libnetwork/default_gateway.go')
-rw-r--r--libnetwork/default_gateway.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/libnetwork/default_gateway.go b/libnetwork/default_gateway.go
index b3336ebbe8..08e19b0d62 100644
--- a/libnetwork/default_gateway.go
+++ b/libnetwork/default_gateway.go
@@ -4,8 +4,8 @@ import (
"fmt"
"strings"
- "github.com/docker/libnetwork/netlabel"
- "github.com/docker/libnetwork/types"
+ "github.com/docker/docker/libnetwork/netlabel"
+ "github.com/docker/docker/libnetwork/types"
"github.com/sirupsen/logrus"
)