RFC Errata
RFC 6536, "Network Configuration Protocol (NETCONF) Access Control Model", March 2012
Note: This RFC has been obsoleted by RFC 8341
Source of RFC: netconf (ops)See Also: RFC 6536 w/ inline errata
Errata ID: 3863
Status: Verified
Type: Technical
Publication Format(s) : TEXT
Reported By: Jernej Tuljak
Date Reported: 2014-01-10
Verifier Name: Benoit Claise
Date Verified: 2014-04-18
Section 3.5.2. says:
typedef group-name-type { type string { length "1..max"; pattern "[^\*].*"; } description "Name of administrative group to which users can be assigned."; }
It should say:
typedef group-name-type { type string { length "1..max"; pattern '[^\*].*'; } description "Name of administrative group to which users can be assigned."; }
Notes:
As per RFC6020, Section 6.1.3., a backslash within a double-quoted string introduces a special character. The only valid escape sequences inside a double-quoted YANG string are: \n, \t, \" and \\. As \* is not a valid escape sequence, a single quoted string should be used to specify the offending pattern statement's argument. The quotes could also be omitted.