summaryrefslogtreecommitdiffstats
path: root/globals.pl
diff options
context:
space:
mode:
Diffstat (limited to 'globals.pl')
-rw-r--r--globals.pl6
1 files changed, 4 insertions, 2 deletions
diff --git a/globals.pl b/globals.pl
index f9d19609c..fd9595fbc 100644
--- a/globals.pl
+++ b/globals.pl
@@ -445,8 +445,10 @@ sub GenerateRandomPassword {
$size ||= 8;
# The list of characters that can appear in a randomly generated password.
- # Note that users can put any character into a password they choose themselves.
- my @pwchars = (0..9, 'A'..'Z', 'a'..'z', '-', '_', '!', '@', '#', '$', '%', '^', '&', '*');
+ # Note that users can put any character into a password they choose
+ # themselves.
+ my @pwchars = (0..9, 'A'..'Z', 'a'..'z', '-', '_', '!', '@', '#', '$',
+ '%', '^', '*');
# The number of characters in the list.
my $pwcharslen = scalar(@pwchars);