Module Name: src Committed By: christos Date: Fri Aug 27 17:53:13 UTC 2021
Modified Files: src/usr.bin/base64: base64.c Log Message: make ignore whitespace the default To generate a diff of this commit: cvs rdiff -u -r1.4 -r1.5 src/usr.bin/base64/base64.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/usr.bin/base64/base64.c diff -u src/usr.bin/base64/base64.c:1.4 src/usr.bin/base64/base64.c:1.5 --- src/usr.bin/base64/base64.c:1.4 Wed Aug 25 18:43:20 2021 +++ src/usr.bin/base64/base64.c Fri Aug 27 13:53:13 2021 @@ -1,4 +1,4 @@ -/* $NetBSD: base64.c,v 1.4 2021/08/25 22:43:20 rillig Exp $ */ +/* $NetBSD: base64.c,v 1.5 2021/08/27 17:53:13 christos Exp $ */ /*- * Copyright (c) 2018 The NetBSD Foundation, Inc. @@ -30,7 +30,7 @@ */ #include <sys/cdefs.h> -__RCSID("$NetBSD: base64.c,v 1.4 2021/08/25 22:43:20 rillig Exp $"); +__RCSID("$NetBSD: base64.c,v 1.5 2021/08/27 17:53:13 christos Exp $"); #include <ctype.h> #include <errno.h> @@ -240,7 +240,7 @@ main(int argc, char *argv[]) { bool decode = false; size_t wrap = 76; - bool ignore = false; + bool ignore = true; int c; while ((c = getopt(argc, argv, "b:Ddiw:")) != -1) {