diff options
author | eseyman%linagora.com <> | 2008-07-07 16:01:51 +0200 |
---|---|---|
committer | eseyman%linagora.com <> | 2008-07-07 16:01:51 +0200 |
commit | 0b699b7ba2f8514728029965149bacc3a54bb9e3 (patch) | |
tree | 5e1510594e8e982016688e7d789847c29bcdfb70 /contrib | |
parent | d5a67a2bbeebff59e9d0d995b9932fd90a74366f (diff) | |
download | bugzilla-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-x | contrib/syncLDAP.pl | 2 |
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 { |