logo

utils-std

Collection of commonly available Unix tools git clone https://anongit.hacktivis.me/git/utils-std.git/
commit: 98a9fead66ec397fbcb00378577d50a941ba5791
parent 61f63e4c641f34a1140c732a9155bb6f75f3ad63
Author: Haelwenn (lanodan) Monnier <contact@hacktivis.me>
Date:   Sat, 22 Mar 2025 04:35:02 +0100

Revert "cmd/expr: gracefully handle long options"

This reverts commit 8d6cb11c793530c7e89db32808e3cb657a55fa8d.

Diffstat:

Mcmd/expr.y9+++------
1 file changed, 3 insertions(+), 6 deletions(-)

diff --git a/cmd/expr.y b/cmd/expr.y @@ -297,19 +297,16 @@ main(int argc, char *argv[]) av = argv + 1; nonposix = 1; } else { - while ((c = getopt(argc, argv, ":e-:")) != -1) { + while ((c = getopt(argc, argv, ":e")) != -1) { switch (c) { case 'e': nonposix = 1; break; - case '-': - utils_errx(1, "Unsupported long option: '--%s'", optarg); - break; case ':': - utils_errx(1, "Missing operand for option: '-%c'", optopt); + utils_errx(1, "Missing operand for option: '-%c'\n", optopt); break; case '?': - utils_errx(1, "Unrecognised option: '-%c'", optopt); + utils_errx(1, "Unrecognised option: '-%c'\n", optopt); break; default: abort();