From: Simon Josefsson Date: Sun, 1 Jun 2008 11:08:20 +0000 (+0200) Subject: src/base64.c: Improve comments. X-Git-Tag: v7.0~222 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=423f28be77373be10a96aa76855e1076f752a6b3;p=thirdparty%2Fcoreutils.git src/base64.c: Improve comments. --- diff --git a/src/base64.c b/src/base64.c index c9e50cf5c1..a3a73451e6 100644 --- a/src/base64.c +++ b/src/base64.c @@ -240,9 +240,9 @@ main (int argc, char **argv) FILE *input_fh; const char *infile; - /* True if --decode has bene given and we should decode data. */ + /* True if --decode has been given and we should decode data. */ bool decode = false; - /* True if we should ignore non-alphabetic characters. */ + /* True if we should ignore non-base64-alphabetic characters. */ bool ignore_garbage = false; /* Wrap encoded base64 data around the 76:th column, by default. */ uintmax_t wrap_column = 76;