Merge pull request #2136 from UrBnW/citrixtypo

fix(citrix) licenses typo
This commit is contained in:
qgarnier 2020-08-05 18:08:36 +02:00 committed by GitHub
commit b80a7b2087
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -153,7 +153,7 @@ sub manage_selection {
$self->{licenses}->{ $obj->{PLD} }->{used} = $obj->{InUseCount};
$self->{licenses}->{ $obj->{PLD} }->{total} = $obj->{Count};
$self->{licenses}->{ $obj->{PLD} }->{prct_used} = $obj->{InUseCount} * 100 / $obj->{Count};
$self->{licenses}->{ $obj->{PLD} }->{prct_free} = 100 - $self->{license}->{$obj->{PLD}}->{prct_used};
$self->{licenses}->{ $obj->{PLD} }->{prct_free} = 100 - $self->{licenses}->{ $obj->{PLD} }->{prct_used};
$self->{licenses}->{ $obj->{PLD} }->{free} = $obj->{Count} - $obj->{InUseCount};
}