[12/19] general-functions.pl: formatBytes() Fix computing the correct unit.

Message ID 20200413074550.2735-12-stefan.schantl@ipfire.org
State Accepted
Commit 25932be3e3c99b13fdb27b85dece9ca499ad5212
Headers
Series [01/19] openvpn: Add WUI page for client usage statistics |

Commit Message

Stefan Schantl April 13, 2020, 7:45 a.m. UTC
  Signed-off-by: Stefan Schantl <stefan.schantl@ipfire.org>
---
 config/cfgroot/general-functions.pl | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
  

Patch

diff --git a/config/cfgroot/general-functions.pl b/config/cfgroot/general-functions.pl
index 692e072c2..4c7cf09a8 100644
--- a/config/cfgroot/general-functions.pl
+++ b/config/cfgroot/general-functions.pl
@@ -1272,14 +1272,14 @@  sub formatBytes {
 
 	# Loop through the array of units.
 	foreach my $element (@units) {
+		# Assign current processed element to unit.
+		$unit = $element;
+
 		# Break loop if the bytes are less than the next unit.
 		last if $bytes < 1024;
 
 		# Divide bytes amount with 1024.
         	$bytes /= 1024;
-
-		# Assign current processed element to unit.
-        	$unit = $element;
     	}
 
 	# Return the divided and rounded bytes count and the unit.