From: eseyman%linagora.com <> Date: Mon, 7 Jul 2008 14:01:17 +0000 (+0000) Subject: Remove unnecessary '\' from a regexp (':' is not a special character) X-Git-Tag: bugzilla-3.2rc1~33 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=de797ea8e23e0a4cdf797386b7eb374933e64bc4;p=thirdparty%2Fbugzilla.git Remove unnecessary '\' from a regexp (':' is not a special character) This is a nitpick from bug #441503 --- diff --git a/contrib/syncLDAP.pl b/contrib/syncLDAP.pl index 51ee5c1fa1..3da25a6567 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 {