git: ed016aa43541 - main - base64: ignore -i as promised
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sun, 24 Apr 2022 06:24:26 UTC
The branch main has been updated by pstef:
URL: https://cgit.FreeBSD.org/src/commit/?id=ed016aa4354156a6e778902035fc0186d3b93a4f
commit ed016aa4354156a6e778902035fc0186d3b93a4f
Author: Piotr Pawel Stefaniak <pstef@FreeBSD.org>
AuthorDate: 2022-04-21 16:54:36 +0000
Commit: Piotr Pawel Stefaniak <pstef@FreeBSD.org>
CommitDate: 2022-04-24 06:23:27 +0000
base64: ignore -i as promised
---
usr.bin/bintrans/bintrans.c | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/usr.bin/bintrans/bintrans.c b/usr.bin/bintrans/bintrans.c
index 04b3b10d84c8..c4b443a9009b 100644
--- a/usr.bin/bintrans/bintrans.c
+++ b/usr.bin/bintrans/bintrans.c
@@ -147,8 +147,12 @@ base64_encode_or_decode(int argc, char *argv[])
case 'w':
w = optarg;
break;
+ case 'i':
+ /* silently ignore */
+ break;
case VERSION:
version_base64();
+ break;
case HELP:
default:
usage_base64(ch == '?');