From: eseyman%linagora.com <> Date: Mon, 7 Jul 2008 14:00:29 +0000 (+0000) Subject: Remove unnecessary '\' from a regexp (':' is not a special character) X-Git-Tag: bugzilla-3.0.5~12 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6b5d9de6fa487b4554f74849a82e4d21e9881fdc;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 74693ff151..3720097d74 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 {