The following errata report has been rejected for RFC7317, "A YANG Data Model for System Management".
-------------------------------------- You may review the report below and at: http://www.rfc-editor.org/errata_search.php?rfc=7317&eid=4795 -------------------------------------- Status: Rejected Type: Editorial Reported by: Kaja Mohideen <[email protected]> Date Reported: 2016-09-05 Rejected by: Benoit Claise (IESG) Section: 5 Original Text ------------- typedef crypt-hash { type string { pattern 'RFCORIGINAL_TEXT$.*' + '|$[a-zA-Z0-9./]{1,8}$[a-zA-Z0-9./]{22}' + '|$(rounds=\d+$)?[a-zA-Z0-9./]{1,16}$[a-zA-Z0-9./]{43}' + '|$(rounds=\d+$)?[a-zA-Z0-9./]{1,16}$[a-zA-Z0-9./]{86}'; } Corrected Text -------------- typedef crypt-hash { type string { pattern '$0$.*' + '|$1$[a-zA-Z0-9./]{1,8}$[a-zA-Z0-9./]{22}' + '|$5$(rounds=\d+$)?[a-zA-Z0-9./]{1,16}$[a-zA-Z0-9./]{43}' + '|$6$(rounds=\d+$)?[a-zA-Z0-9./]{1,16}$[a-zA-Z0-9./]{86}'; } Notes ----- Character $ has special meaning in regular expression. --VERIFIER NOTES-- No, "$" is not special in the regular expression dialect used in YANG (XML Schema). -------------------------------------- RFC7317 (draft-ietf-netmod-system-mgmt-16) -------------------------------------- Title : A YANG Data Model for System Management Publication Date : August 2014 Author(s) : A. Bierman, M. Bjorklund Category : PROPOSED STANDARD Source : NETCONF Data Modeling Language Area : Operations and Management Stream : IETF Verifying Party : IESG _______________________________________________ netmod mailing list [email protected] https://www.ietf.org/mailman/listinfo/netmod
