diff options
author | Ondrej Zajicek <santiago@crfreenet.org> | 2024-04-11 18:54:23 +0200 |
---|---|---|
committer | Ondrej Zajicek <santiago@crfreenet.org> | 2024-04-11 18:54:23 +0200 |
commit | 13c10ee06241d4538603d21954be0c2db08911ba (patch) | |
tree | 89cac38c55f50673d4b106a9020fb19928c8e007 | |
parent | 280daed57d061eb1ebc89013637c683fe23465e8 (diff) |
Doc: Fix datetime format for password entries
In BIRD 1, we used DD-MM-YYYY, while in BIRD 2 we switched to the usual
format YYYY-MM-DD.
Thanks to Janne Pisilä for the bugreport.
-rw-r--r-- | doc/bird.sgml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/bird.sgml b/doc/bird.sgml index d0bfabdb..87317e04 100644 --- a/doc/bird.sgml +++ b/doc/bird.sgml @@ -957,7 +957,7 @@ agreement"). <tag><label id="proto-pass-gen-from">generate from "<m/time/"</tag> The start time of the usage of the password for packet signing. - The format of <cf><m/time/</cf> is <tt>dd-mm-yyyy HH:MM:SS</tt>. + The format of <cf><m/time/</cf> is <tt>YYYY-MM-DD [hh:mm:ss[.sss]]</tt>. <tag><label id="proto-pass-gen-to">generate to "<m/time/"</tag> The last time of the usage of the password for packet signing. @@ -4811,14 +4811,14 @@ protocol ospf MyOSPF { authentication cryptographic; password "abc" { id 1; - generate to "22-04-2003 11:00:06"; - accept from "17-01-2001 12:01:05"; + generate to "2023-04-22 11:00:06"; + accept from "2021-01-17 12:01:05"; algorithm hmac sha384; }; password "def" { id 2; - generate to "22-07-2005 17:03:21"; - accept from "22-02-2001 11:34:06"; + generate to "2025-07-22"; + accept from "2021-02-22"; algorithm hmac sha512; }; }; |