]> git.proxmox.com Git - pve-access-control.git/blobdiff - oathkeygen
fix typo in oathkeygen: randon -> random
[pve-access-control.git] / oathkeygen
index 89e385ab459e05ddcf0b9db86a246fe05139a701..82e4eec48df159e364ef9aef3df58f73cbfed17a 100755 (executable)
@@ -6,6 +6,6 @@ use MIME::Base32; #libmime-base32-perl
 
 my $test;
 open(RND, "/dev/urandom");
-sysread(RND, $test, 10) == 10 || die "read randon data failed\n";
+sysread(RND, $test, 10) == 10 || die "read random data failed\n";
 print MIME::Base32::encode_rfc3548($test) . "\n";