mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-15 01:48:34 -07:00
fix(genpass): use log()
instead of log2()
for zsh < 5.6 (#9548)
Fixes #9548
This commit is contained in:
parent
e9991c6aa0
commit
90ffda7ed2
@ -43,7 +43,7 @@ fi
|
||||
|
||||
# Figure out how many words we need for 128 bits of security margin.
|
||||
# Each word adds log2($#words) bits.
|
||||
local -i n=$((ceil(128. / log2($#words))))
|
||||
local -i n=$((ceil(128. / (log($#words) / log(2)))))
|
||||
|
||||
{
|
||||
local c
|
||||
|
Loading…
Reference in New Issue
Block a user