summaryrefslogtreecommitdiffstats
path: root/contrib
diff options
context:
space:
mode:
authoreseyman%linagora.com <>2008-07-07 16:01:51 +0200
committereseyman%linagora.com <>2008-07-07 16:01:51 +0200
commit0b699b7ba2f8514728029965149bacc3a54bb9e3 (patch)
tree5e1510594e8e982016688e7d789847c29bcdfb70 /contrib
parentd5a67a2bbeebff59e9d0d995b9932fd90a74366f (diff)
downloadbugzilla-0b699b7ba2f8514728029965149bacc3a54bb9e3.tar.gz
bugzilla-0b699b7ba2f8514728029965149bacc3a54bb9e3.tar.xz
Remove unnecessary '\' from a regexp (':' is not a special character)
This is a nitpick from bug #441503
Diffstat (limited to 'contrib')
-rwxr-xr-xcontrib/syncLDAP.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/syncLDAP.pl b/contrib/syncLDAP.pl
index 51ee5c1fa..3da25a656 100755
--- a/contrib/syncLDAP.pl
+++ b/contrib/syncLDAP.pl
@@ -98,7 +98,7 @@ if ($LDAPserver eq "") {
}
my $LDAPconn;
-if($LDAPserver =~ /\:\/\//) {
+if($LDAPserver =~ /:\/\//) {
# if the "LDAPserver" parameter is in uri scheme
$LDAPconn = Net::LDAP->new($LDAPserver, version => 3);
} else {