]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Remove unnecessary '\' from a regexp (':' is not a special character)
authoreseyman%linagora.com <>
Mon, 7 Jul 2008 14:01:17 +0000 (14:01 +0000)
committereseyman%linagora.com <>
Mon, 7 Jul 2008 14:01:17 +0000 (14:01 +0000)
This is a nitpick from bug #441503

contrib/syncLDAP.pl

index 51ee5c1fa1676f16694035f6739d476abae912ec..3da25a6567241b4a55ec1b98716dcc9fcddac109 100755 (executable)
@@ -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 {