summaryrefslogtreecommitdiff
path: root/examples/misc/adssearch.pl
diff options
context:
space:
mode:
authorChris Lamb <chris@chris-lamb.co.uk>2017-02-17 22:49:29 +1300
committerGarming Sam <garming@samba.org>2017-02-22 08:26:21 +0100
commitc4feed0b8cb6df71e14a30c07e4b5560368f54cc (patch)
tree8638995cb8d35c98af77a2333e3c32ccbe242554 /examples/misc/adssearch.pl
parent021189e32ba507832b5e821e5cda8a2889225955 (diff)
downloadsamba-c4feed0b8cb6df71e14a30c07e4b5560368f54cc.tar.gz
Correct "doesnt" typos.
Signed-off-by: Chris Lamb <chris@chris-lamb.co.uk> Reviewed-by: Andrew Bartlett <abartlet@samba.org> Reviewed-by: Garming Sam <garming@catalyst.net.nz>
Diffstat (limited to 'examples/misc/adssearch.pl')
-rwxr-xr-xexamples/misc/adssearch.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/misc/adssearch.pl b/examples/misc/adssearch.pl
index 02c4464abba..7c3570abd6e 100755
--- a/examples/misc/adssearch.pl
+++ b/examples/misc/adssearch.pl
@@ -1723,14 +1723,14 @@ sub do_bind($$) {
$mesg = $async_ldap_hd->bind(
sasl => $sasl_hd,
callback => \&error_callback
- ) || die "doesnt work";
+ ) || die "doesn't work";
} else {
$sasl_mech = "";
$mesg = $async_ldap_hd->bind(
$binddn,
password => $password,
callback => $opt_fastbind ? undef : \&error_callback
- ) || die "doesnt work";
+ ) || die "doesn't work";
};
if ($mesg->code) {
display_ldap_err($mesg) if (!$opt_fastbind);