--- loncom/lonssl.pm 2018/08/09 13:27:55 1.18 +++ loncom/lonssl.pm 2018/08/20 18:53:20 1.19 @@ -1,5 +1,5 @@ # -# $Id: lonssl.pm,v 1.18 2018/08/09 13:27:55 raeburn Exp $ +# $Id: lonssl.pm,v 1.19 2018/08/20 18:53:20 raeburn Exp $ # # Copyright Michigan State University Board of Trustees # @@ -411,17 +411,13 @@ sub has_badcert_file { } sub Read_Connect_Config { - my ($secureconf,$checkedcrl,$perlvarref) = @_; - return unless ((ref($secureconf) eq 'HASH') && (ref($checkedcrl) eq 'HASH')); + my ($secureconf,$perlvarref) = @_; + return unless (ref($secureconf) eq 'HASH'); unless (ref($perlvarref) eq 'HASH') { $perlvarref = $perlvar; } - # Clear hash of clients for which Certificate Revocation List checked - foreach my $key (keys(%{$checkedcrl})) { - delete($checkedcrl->{$key}); - } # Clean out the old table first. foreach my $key (keys(%{$secureconf})) { delete($secureconf->{$key});