summaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
authorTomas Mraz <tmraz@redhat.com>2011-12-07 17:55:12 +0100
committerTomas Mraz <tmraz@redhat.com>2011-12-07 17:55:12 +0100
commitc0d1291f87055be9aa7df59ef779fcc08433247e (patch)
treeb664789073243fcf0c464c305804e620871bdfb6 /python
parent70c3dc72f91b426d62e1fc3db03d98f0f7a9b5ab (diff)
downloadlibpwquality-c0d1291f87055be9aa7df59ef779fcc08433247e.tar.gz
Correct the description strings.
Diffstat (limited to 'python')
-rw-r--r--python/pwquality.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/python/pwquality.c b/python/pwquality.c
index 8a2e342..35fbcf5 100644
--- a/python/pwquality.c
+++ b/python/pwquality.c
@@ -104,17 +104,17 @@ static PyGetSetDef pwqsettings_getseters[] = {
},
{ "maxclassrepeat",
(getter)pwqsettings_getint, (setter)pwqsettings_setint,
- "Maximum repeated consecutive characters",
+ "Maximum consecutive characters of the same class",
(void *)PWQ_SETTING_MAX_CLASS_REPEAT
},
{ "gecoscheck",
(getter)pwqsettings_getint, (setter)pwqsettings_setint,
- "Maximum repeated consecutive characters",
+ "Match words from the passwd GECOS field if available",
(void *)PWQ_SETTING_GECOS_CHECK
},
{ "badwords",
(getter)pwqsettings_getstr, (setter)pwqsettings_setstr,
- "Path to the cracklib dictionary",
+ "List of words more than 3 characters long that are forbidden",
(void *)PWQ_SETTING_BAD_WORDS
},
{ "dictpath",