aboutsummaryrefslogtreecommitdiffstats
path: root/common.c
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2020-10-21 17:25:33 +0200
committerMattias Andrée <maandree@kth.se>2020-10-21 17:30:13 +0200
commita070f58c7de2ecba86a671209c519712e29679bf (patch)
treee7cb6e9d9cca664ff9ca5f58eed36df11fd72be8 /common.c
parenttest: check that -c accepts both uppercase and lowercase (diff)
downloadsha3sum-a070f58c7de2ecba86a671209c519712e29679bf.tar.gz
sha3sum-a070f58c7de2ecba86a671209c519712e29679bf.tar.bz2
sha3sum-a070f58c7de2ecba86a671209c519712e29679bf.tar.xz
Use lowercase by default1.2
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'common.c')
-rw-r--r--common.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/common.c b/common.c
index 9601aa5..dda8683 100644
--- a/common.c
+++ b/common.c
@@ -458,7 +458,7 @@ print_checksum(const char *restrict filename, const struct libkeccak_spec *restr
int
run(int argc, char *argv[], struct libkeccak_generalised_spec *restrict gspec, const char *restrict suffix, int with_a)
{
- enum representation style = REPRESENTATION_UPPER_CASE;
+ enum representation style = REPRESENTATION_LOWER_CASE;
int verbose = 0, hex = 0, check = 0, nuls = 0;
long int squeezes = 1;
int (*fun)(const char *restrict filename, const struct libkeccak_spec *restrict spec,