From 9c8f9ccdf5b630f3724d31e39cef0285332352a2 Mon Sep 17 00:00:00 2001 From: Matti Saarinen Date: Tue, 17 May 2022 09:18:31 +0300 Subject: [PATCH] Replaced tabs with whitespaces --- config/config.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/config.go b/config/config.go index aae6b03a..793c20f7 100644 --- a/config/config.go +++ b/config/config.go @@ -50,7 +50,7 @@ var ( Timeout: time.Second * 5, Auth: DefaultAuth, UseUnconnectedUDPSocket: false, - AllowNonIncreasingOIDs: false, + AllowNonIncreasingOIDs false, } DefaultModule = Module{ WalkParams: DefaultWalkParams, @@ -70,7 +70,7 @@ type WalkParams struct { Timeout time.Duration `yaml:"timeout,omitempty"` Auth Auth `yaml:"auth,omitempty"` UseUnconnectedUDPSocket bool `yaml:"use_unconnected_udp_socket,omitempty"` - AllowNonIncreasingOIDs bool `yaml:"allow_nonincreasing_oids,omitempty"` + AllowNonIncreasingOID bool `yaml:"allow_nonincreasing_oids,omitempty"` } type Module struct {