Skip to content

Commit

Permalink
add missing semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
cornelinux committed Jul 23, 2021
1 parent 6377032 commit 6ba3353
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion privacyidea_radius.pm
Original file line number Diff line number Diff line change
Expand Up @@ -428,7 +428,7 @@ sub authenticate {
$params{"pass"} = "";
}
# URL encode username and password
my $uri = URI::Encode->new( { encode_reserved => 0 } )
my $uri = URI::Encode->new( { encode_reserved => 0 } );
$params{"user"} = $uri->encode($params{"user"});
$params{"pass"} = $uri->encode($params{"pass"});
if ( exists( $RAD_REQUEST{'NAS-IP-Address'} ) ) {
Expand Down

0 comments on commit 6ba3353

Please sign in to comment.