From 4fafdd56d05a0401d92c8e7daf56750ca72e0873 Mon Sep 17 00:00:00 2001 From: emiel Date: Sat, 21 Feb 2009 15:23:09 +0000 Subject: [PATCH] Replace TCPsocket with TCPSocket. * Ruby 1.9 removes the "alias" for TCPsocket so use TCPSocket instead. Notice case. --- lib/net/ldap.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/net/ldap.rb b/lib/net/ldap.rb index e2f2d0f..2a882da 100644 --- a/lib/net/ldap.rb +++ b/lib/net/ldap.rb @@ -1149,7 +1149,7 @@ module Net # def initialize server begin - @conn = TCPsocket.new( server[:host], server[:port] ) + @conn = TCPSocket.new( server[:host], server[:port] ) rescue raise LdapError.new( "no connection to server" ) end @@ -1181,7 +1181,7 @@ module Net # It doesn't do any server-cert validation and requires nothing in the way # of key files and root-cert files, etc etc. # OBSERVE: WE REPLACE the value of @conn, which is presumed to be a connected - # TCPsocket object. + # TCPSocket object. # # The start_tls method is supported by many servers over the standard LDAP port. # It does not require an alternative port for encrypted communications, as with