From 64ad2164de358127834946c04675c04dfe523d94 Mon Sep 17 00:00:00 2001 From: Simon Ser Date: Fri, 4 Feb 2022 15:41:40 +0100 Subject: [PATCH] Fix capitalization of handleServiceSASLStatus --- service.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/service.go b/service.go index f548535..855f413 100644 --- a/service.go +++ b/service.go @@ -244,7 +244,7 @@ func init() { "status": { usage: "", desc: "show SASL status", - handle: handleServiceSaslStatus, + handle: handleServiceSASLStatus, }, "set-plain": { usage: " ", @@ -689,7 +689,7 @@ func handleServiceCertFPFingerprints(ctx context.Context, dc *downstreamConn, pa return nil } -func handleServiceSaslStatus(ctx context.Context, dc *downstreamConn, params []string) error { +func handleServiceSASLStatus(ctx context.Context, dc *downstreamConn, params []string) error { if len(params) != 1 { return fmt.Errorf("expected exactly one argument") }