+2007-08-30 Steve Langasek <vorlon@debian.org>
+
+ * modules/pam_cracklib/pam_cracklib.c:
+ s/CRACKLIB_DICT/CRACKLIB_DICTS/, for consistency with existing
+ #define in pam_unix
+
2007-08-29 Steve Langasek <vorlon@debian.org>
* libpam/pam_modutil_getgrgid.c, libpam/pam_modutil_getgrnam.c,
extern char *FascistCheck(char *pw, const char *dictpath);
#endif
-#ifndef CRACKLIB_DICT
-#define CRACKLIB_DICT NULL
+#ifndef CRACKLIB_DICTS
+#define CRACKLIB_DICTS NULL
#endif
/* For Translators: "%s%s" could be replaced with "<service> " or "". */
} else if (!strncmp(*argv,"dictpath=",9)) {
opt->cracklib_dictpath = *argv+9;
if (!*(opt->cracklib_dictpath)) {
- opt->cracklib_dictpath = CRACKLIB_DICT;
+ opt->cracklib_dictpath = CRACKLIB_DICTS;
}
} else {
pam_syslog(pamh,LOG_ERR,"pam_parse: unknown option; %s",*argv);
options.use_authtok = CO_USE_AUTHTOK;
memset(options.prompt_type, 0, BUFSIZ);
strcpy(options.prompt_type,"UNIX");
- options.cracklib_dictpath = CRACKLIB_DICT;
+ options.cracklib_dictpath = CRACKLIB_DICTS;
ctrl = _pam_parse(pamh, &options, argc, argv);