The man page states that meta time and meta hour optionally accept seconds, but I get errors on v1.0.6 or v1.0.8. meta time doesn't even like the dash date separator. # nft -c add rule inet t c meta hour "17:00:01" drop Error: syntax error, unexpected colon, expecting end of file or newline or semicolon add rule inet t c meta hour 17:00:01 drop ^ # nft -c add rule inet t c meta time "2023-12-24 17:00:01" drop Error: syntax error, unexpected -, expecting end of file or newline or semicolon add rule inet t c meta time 2023-12-24 17:00:01 drop ^ Documentation problems or legitimate defects?