Changed LDAP#add, LDAP#modify and LDAP#delete to return
T/F instead of a numeric LDAP code.
This commit is contained in:
parent
f8649bc54e
commit
ee488f9384
1 changed files with 15 additions and 15 deletions
|
@ -256,16 +256,16 @@ module Net
|
||||||
#
|
#
|
||||||
def add args
|
def add args
|
||||||
if @open_connection
|
if @open_connection
|
||||||
@open_connection.add( args )
|
@result = @open_connection.add( args )
|
||||||
else
|
else
|
||||||
result_code = 0
|
@result = 0
|
||||||
conn = Connection.new( :host => @host, :port => @port )
|
conn = Connection.new( :host => @host, :port => @port )
|
||||||
if (result_code = conn.bind( args[:auth] || @auth )) == 0
|
if (@result = conn.bind( args[:auth] || @auth )) == 0
|
||||||
result_code = conn.add( args )
|
@result = conn.add( args )
|
||||||
end
|
end
|
||||||
conn.close
|
conn.close
|
||||||
result_code
|
|
||||||
end
|
end
|
||||||
|
@result == 0
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
|
@ -275,16 +275,16 @@ module Net
|
||||||
#
|
#
|
||||||
def modify args
|
def modify args
|
||||||
if @open_connection
|
if @open_connection
|
||||||
@open_connection.modify( args )
|
@result = @open_connection.modify( args )
|
||||||
else
|
else
|
||||||
result_code = 0
|
@result = 0
|
||||||
conn = Connection.new( :host => @host, :port => @port )
|
conn = Connection.new( :host => @host, :port => @port )
|
||||||
if (result_code = conn.bind( args[:auth] || @auth )) == 0
|
if (@result = conn.bind( args[:auth] || @auth )) == 0
|
||||||
result_code = conn.modify( args )
|
@result = conn.modify( args )
|
||||||
end
|
end
|
||||||
conn.close
|
conn.close
|
||||||
result_code
|
|
||||||
end
|
end
|
||||||
|
@result == 0
|
||||||
end
|
end
|
||||||
|
|
||||||
#
|
#
|
||||||
|
@ -293,16 +293,16 @@ module Net
|
||||||
#
|
#
|
||||||
def rename args
|
def rename args
|
||||||
if @open_connection
|
if @open_connection
|
||||||
@open_connection.rename( args )
|
@result = @open_connection.rename( args )
|
||||||
else
|
else
|
||||||
result_code = 0
|
@result = 0
|
||||||
conn = Connection.new( :host => @host, :port => @port )
|
conn = Connection.new( :host => @host, :port => @port )
|
||||||
if (result_code = conn.bind( args[:auth] || @auth )) == 0
|
if (@result = conn.bind( args[:auth] || @auth )) == 0
|
||||||
result_code = conn.rename( args )
|
@result = conn.rename( args )
|
||||||
end
|
end
|
||||||
conn.close
|
conn.close
|
||||||
result_code
|
|
||||||
end
|
end
|
||||||
|
@result == 0
|
||||||
end
|
end
|
||||||
|
|
||||||
end # class LDAP
|
end # class LDAP
|
||||||
|
|
Loading…
Add table
Reference in a new issue