diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2018-05-30 13:24:53 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2018-05-30 13:24:53 -0300 |
commit | 957d506490ad9447ac7feacba5f96e8404530528 (patch) | |
tree | 2c9a423dedb02183be023a37e5db8fe83d98c197 | |
parent | 97c58315e5e53c1605b73cbf6039a4e16a63c3c8 (diff) | |
download | keyringer-957d506490ad9447ac7feacba5f96e8404530528.tar.gz keyringer-957d506490ad9447ac7feacba5f96e8404530528.tar.bz2 |
Adds status=none at on invocation at keyringer_pwgen
-rwxr-xr-x | lib/keyringer/actions/pwgen | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/keyringer/actions/pwgen b/lib/keyringer/actions/pwgen index ab5cb84..e1e8947 100755 --- a/lib/keyringer/actions/pwgen +++ b/lib/keyringer/actions/pwgen @@ -18,7 +18,7 @@ function keyringer_pwgen { # Strip possible newlines if output is wrapped. # Also strip trailing = signs as they add nothing to the password's entropy. - dd bs=1 count=$ENTROPY_BYTES if=$ENTROPY_SOURCE | base64 | tr -d '\n=' + dd bs=1 count=$ENTROPY_BYTES if=$ENTROPY_SOURCE status=none | base64 | tr -d '\n=' echo } |