NetBSD-Bugs archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

PR/57997 CVS commit: [netbsd-10] src/usr.sbin/certctl



The following reply was made to PR bin/57997; it has been noted by GNATS.

From: "Martin Husemann" <martin%netbsd.org@localhost>
To: gnats-bugs%gnats.NetBSD.org@localhost
Cc: 
Subject: PR/57997 CVS commit: [netbsd-10] src/usr.sbin/certctl
Date: Mon, 11 Mar 2024 17:50:04 +0000

 Module Name:	src
 Committed By:	martin
 Date:		Mon Mar 11 17:50:04 UTC 2024
 
 Modified Files:
 	src/usr.sbin/certctl [netbsd-10]: certctl.sh
 
 Log Message:
 Pull up following revision(s) (requested by riastradh in ticket #625):
 
 	usr.sbin/certctl/certctl.sh: revision 1.7
 
 certctl(8): Pacify formal POSIX sh syntax.
 
 According to POSIX 2018, the syntax between `then' and `elif' and
 `fi' must be a _non-empty_ list of commands:
 compound_list    : linebreak term
                  | linebreak term separator
                  ;
 ...
 if_clause        : If compound_list Then compound_list else_part Fi
                  | If compound_list Then compound_list           Fi
                  ;
 else_part        : Elif compound_list Then compound_list
                  | Elif compound_list Then compound_list else_part
                  | Else compound_list
                  ;
 
 https://pubs.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#tag_18
 +_10_02
 
 NetBSD's sh(1) currently doesn't enforce this and allows an empty
 sequence of commands, but let's not rely on that nonstandard quirk.
 
 Noted in PR 57997.
 
 
 To generate a diff of this commit:
 cvs rdiff -u -r1.4.2.4 -r1.4.2.5 src/usr.sbin/certctl/certctl.sh
 
 Please note that diffs are not public domain; they are subject to the
 copyright notices on the relevant files.
 


Home | Main Index | Thread Index | Old Index