From e39fc34599703e7b5cbe83d7ee596be0f77bdbc2 Mon Sep 17 00:00:00 2001 From: "Sascha L. Teichmann" Date: Mon, 27 Mar 2023 13:17:49 +0200 Subject: [PATCH] Fix typo --- cmd/csaf_aggregator/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/csaf_aggregator/main.go b/cmd/csaf_aggregator/main.go index 8dbdcd7..69d8c3a 100644 --- a/cmd/csaf_aggregator/main.go +++ b/cmd/csaf_aggregator/main.go @@ -53,7 +53,7 @@ func lock(lockFile *string, fn func() error) error { } if !locked { - return fmt.Errorf("cannot aquire file lock at %s. Maybe the CSAF aggregator is already running?", *lockFile) + return fmt.Errorf("cannot acquire file lock at %s. Maybe the CSAF aggregator is already running?", *lockFile) } defer fl.Unlock() return fn()