From a65ebc42b29afecce58fe37b208340223eeb9b9d Mon Sep 17 00:00:00 2001 From: Alexandre Pujol Date: Mon, 21 Oct 2024 19:56:09 +0100 Subject: [PATCH] fix(aa-log): add missing flag definition. --- cmd/aa-log/main.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cmd/aa-log/main.go b/cmd/aa-log/main.go index 0c16f5e4b..58aee3716 100644 --- a/cmd/aa-log/main.go +++ b/cmd/aa-log/main.go @@ -92,6 +92,8 @@ func init() { flag.BoolVar(&rules, "rules", false, "Convert the log into AppArmor rules.") flag.BoolVar(&raw, "R", false, "Print the raw log without any formatting.") flag.BoolVar(&raw, "raw", false, "Print the raw log without any formatting.") + flag.StringVar(&since, "S", "", "Display logs since the START time.") + flag.StringVar(&since, "since", "", "Display logs since the START time.") } func main() {