fix(aa-log): add missing flag definition.

This commit is contained in:
Alexandre Pujol 2024-10-21 19:56:09 +01:00
parent 5603f26274
commit a65ebc42b2
No known key found for this signature in database
GPG Key ID: C5469996F0DF68EC

View File

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