summaryrefslogtreecommitdiff
path: root/source3
diff options
context:
space:
mode:
authorGerald Carter <jerry@samba.org>2004-11-11 18:11:40 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 10:53:14 -0500
commite8bf2f7060910ac8deae0dba005f79f1f972ea14 (patch)
tree00d9508c25e96065c1609d84f2389aed6b48f986 /source3
parenta4fab4d51a1c201810414a5b21b9d7bec4442646 (diff)
downloadsamba-e8bf2f7060910ac8deae0dba005f79f1f972ea14.tar.gz
samba-e8bf2f7060910ac8deae0dba005f79f1f972ea14.tar.bz2
samba-e8bf2f7060910ac8deae0dba005f79f1f972ea14.zip
r3683: BUG 2017: fix testparm reporting for the passwd program string
(This used to be commit 23422aeec04dfb72a0ad5b0a67622cec69ca502d)
Diffstat (limited to 'source3')
-rw-r--r--source3/utils/testparm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/utils/testparm.c b/source3/utils/testparm.c
index d4dc22ec91..e131407831 100644
--- a/source3/utils/testparm.c
+++ b/source3/utils/testparm.c
@@ -145,7 +145,7 @@ parameter.\n");
ret = 1;
} else
/* check if there's a %u parameter present */
- if(strstr_m(lp_passwd_chat(), "%u") == NULL) {
+ if(strstr_m(lp_passwd_program(), "%u") == NULL) {
fprintf(stderr, "ERROR: the 'passwd program' (%s) requires a '%%u' parameter.\n", lp_passwd_program());
ret = 1;
}