Re: [netmod] [Editorial Errata Reported] RFC7317 (4795)

Martin Bjorklund <mbj@tail-f.com> Mon, 05 September 2016 10:35 UTC

Return-Path: <mbj@tail-f.com>
X-Original-To: netmod@ietfa.amsl.com
Delivered-To: netmod@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 9AB4212B361 for <netmod@ietfa.amsl.com>; Mon, 5 Sep 2016 03:35:52 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -3.409
X-Spam-Level:
X-Spam-Status: No, score=-3.409 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, RP_MATCHES_RCVD=-1.508, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id lfFsXHC1JDQY for <netmod@ietfa.amsl.com>; Mon, 5 Sep 2016 03:35:51 -0700 (PDT)
Received: from mail.tail-f.com (mail.tail-f.com [46.21.102.45]) by ietfa.amsl.com (Postfix) with ESMTP id CFDD312B1B9 for <netmod@ietf.org>; Mon, 5 Sep 2016 03:35:50 -0700 (PDT)
Received: from localhost (unknown [173.38.220.42]) by mail.tail-f.com (Postfix) with ESMTPSA id 39BB51AE00B6; Mon, 5 Sep 2016 12:35:49 +0200 (CEST)
Date: Mon, 05 Sep 2016 12:34:50 +0200
Message-Id: <20160905.123450.89495070171247833.mbj@tail-f.com>
To: rfc-editor@rfc-editor.org
From: Martin Bjorklund <mbj@tail-f.com>
In-Reply-To: <20160905102106.76141B803F6@rfc-editor.org>
References: <20160905102106.76141B803F6@rfc-editor.org>
X-Mailer: Mew version 6.7 on Emacs 24.5 / Mule 6.0 (HANACHIRUSATO)
Mime-Version: 1.0
Content-Type: Text/Plain; charset="us-ascii"
Content-Transfer-Encoding: 7bit
Archived-At: <https://mailarchive.ietf.org/arch/msg/netmod/8_m30QuaGWQ-_74x8HWF0M1b1b8>
Cc: netmod@ietf.org, joelja@bogus.com, kaja_mohideen.rasool@nokia.com
Subject: Re: [netmod] [Editorial Errata Reported] RFC7317 (4795)
X-BeenThere: netmod@ietf.org
X-Mailman-Version: 2.1.17
Precedence: list
List-Id: NETMOD WG list <netmod.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/netmod>, <mailto:netmod-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/netmod/>
List-Post: <mailto:netmod@ietf.org>
List-Help: <mailto:netmod-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/netmod>, <mailto:netmod-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 05 Sep 2016 10:35:52 -0000

RFC Errata System <rfc-editor@rfc-editor.org> wrote:
> The following errata report has been submitted 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
> 
> --------------------------------------
> Type: Editorial
> Reported by: Kaja Mohideen <kaja_mohideen.rasool@nokia.com>
> 
> 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.

No, "$" is not special in the regular expression dialect used in YANG
(XML Schema).


/martin