aboutsummaryrefslogtreecommitdiffstats
path: root/src/passphrase_helper.h
diff options
context:
space:
mode:
authorMattias Andrée <m@maandree.se>2026-02-22 13:55:39 +0100
committerMattias Andrée <m@maandree.se>2026-02-22 13:55:39 +0100
commitd96a4c670fc33b6bce5399a63e866224d8541043 (patch)
treed4da40fabc2cfbd4fc2498e3b97ccc690ca5d58c /src/passphrase_helper.h
parentUpdate e-mail (diff)
downloadlibpassphrase-d96a4c670fc33b6bce5399a63e866224d8541043.tar.gz
libpassphrase-d96a4c670fc33b6bce5399a63e866224d8541043.tar.bz2
libpassphrase-d96a4c670fc33b6bce5399a63e866224d8541043.tar.xz
m fixesHEADmaster
Signed-off-by: Mattias Andrée <m@maandree.se>
Diffstat (limited to 'src/passphrase_helper.h')
-rw-r--r--src/passphrase_helper.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/passphrase_helper.h b/src/passphrase_helper.h
index 677ab05..bb5d0b9 100644
--- a/src/passphrase_helper.h
+++ b/src/passphrase_helper.h
@@ -57,8 +57,8 @@
#else
# define LIST_PASSPHRASE_STRENGTH_LIMITS(V) \
X(V == 0, "1;31", "Well-known common password") \
- X(V <= 150, "31", "Extremely week") \
- X(V <= 200, "33", "Week") \
+ X(V <= 150, "31", "Extremely weak") \
+ X(V <= 200, "33", "Weak") \
X(V <= 250, "32", "Good") \
X(V <= 350, "1;32", "Strong") \
X(1, "1;7;32", "Perfect")