1
0
Fork 0
mirror of https://github.com/gocsaf/csaf.git synced 2025-12-22 11:55:40 +01:00
This commit is contained in:
Sascha L. Teichmann 2023-03-27 13:17:49 +02:00
parent c59a8f07a3
commit e39fc34599

View file

@ -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()