summaryrefslogtreecommitdiffstats
path: root/pki/base/tps/forms/esc/cgi-bin/sow/cfg.pl
diff options
context:
space:
mode:
authormharmsen <mharmsen@c9f7a03b-bd48-0410-a16d-cbbf54688b0b>2011-02-15 01:14:41 +0000
committermharmsen <mharmsen@c9f7a03b-bd48-0410-a16d-cbbf54688b0b>2011-02-15 01:14:41 +0000
commit53440dccba1cc25c0c776699c8b30d3b3d3a49ec (patch)
tree0e72b0717cc60f7625003b5a61e82ee9cd2b9725 /pki/base/tps/forms/esc/cgi-bin/sow/cfg.pl
parent6f10951c432ab7eb52b1fdcf643a783b171dc39e (diff)
downloadpki-53440dccba1cc25c0c776699c8b30d3b3d3a49ec.tar.gz
pki-53440dccba1cc25c0c776699c8b30d3b3d3a49ec.tar.xz
pki-53440dccba1cc25c0c776699c8b30d3b3d3a49ec.zip
Bugzilla Bug #606944 - Convert TPS to use ldap utilities and API from OpenLDAP
instead of the Mozldap git-svn-id: svn+ssh://svn.fedorahosted.org/svn/pki/trunk@1848 c9f7a03b-bd48-0410-a16d-cbbf54688b0b
Diffstat (limited to 'pki/base/tps/forms/esc/cgi-bin/sow/cfg.pl')
-rwxr-xr-xpki/base/tps/forms/esc/cgi-bin/sow/cfg.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/pki/base/tps/forms/esc/cgi-bin/sow/cfg.pl b/pki/base/tps/forms/esc/cgi-bin/sow/cfg.pl
index 6bced3836..59980b134 100755
--- a/pki/base/tps/forms/esc/cgi-bin/sow/cfg.pl
+++ b/pki/base/tps/forms/esc/cgi-bin/sow/cfg.pl
@@ -115,7 +115,7 @@ sub is_agent()
"-b \"" . "cn=TUS Officers,ou=Groups,".$x_basedn . "\" " .
"-h \"" . $x_host . "\" " .
"-p \"" . $x_port ."\" " .
- "member | grep \"uid=" . $uid . ",\" | wc -l";
+ "-LLL member | grep \"uid=" . $uid . ",\" | wc -l";
my $matched = `$cmd`;
@@ -155,7 +155,7 @@ sub is_user()
"-b \"" . "ou=people,".$x_basedn . "\" " .
"-h \"" . $x_host . "\" " .
"-p \"" . $x_port ."\" " .
- "\"(uid=" . $uid . ")\" uid | grep \"uid:\" | wc -l";
+ "-LLL \"(uid=" . $uid . ")\" uid | grep \"uid:\" | wc -l";
my $matched = `$cmd`;