Skip to content

Commit 6fcec36

Browse files
unclejackchrisplo
authored andcommitted
netplugin/netd.go: fix a typo
Signed-off-by: Cristian Staretu <[email protected]>
1 parent a20b5a0 commit 6fcec36

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

netplugin/netd.go

+2-3
Original file line numberDiff line numberDiff line change
@@ -75,8 +75,7 @@ func startNetPlugin(pluginConfig *plugin.Config) {
7575
}
7676
}
7777

78-
func initNetPluginConifg(ctx *cli.Context) (plugin.Config, error) {
79-
78+
func initNetPluginConfig(ctx *cli.Context) (plugin.Config, error) {
8079
// 1. validate and set up log
8180
if ctx.Bool("use-syslog") {
8281
syslogURL := ctx.String("syslog-url")
@@ -301,7 +300,7 @@ func main() {
301300
}
302301
sort.Sort(cli.FlagsByName(app.Flags))
303302
app.Action = func(ctx *cli.Context) error {
304-
configs, err := initNetPluginConifg(ctx)
303+
configs, err := initNetPluginConfig(ctx)
305304
if err != nil {
306305
errmsg := err.Error()
307306
logrus.Error(errmsg)

0 commit comments

Comments
 (0)