1
0
mirror of synced 2026-02-18 12:56:55 +00:00

Fix missing trailing semicolon

This commit is contained in:
Axel Beckert
2012-11-27 23:26:18 +01:00
parent 85f7d1b9fe
commit 9da26382f4

View File

@@ -4007,7 +4007,7 @@ sub generatePassword {
while (length($password) < $length) {
$password .= substr($possible, (int(rand(length($possible)))), 1);
}
return $password
return $password;
}