]> gitweb.fluxo.info Git - keyringer.git/commitdiff
Adds status=none at on invocation at keyringer_pwgen
authorSilvio Rhatto <rhatto@riseup.net>
Wed, 30 May 2018 16:24:53 +0000 (13:24 -0300)
committerSilvio Rhatto <rhatto@riseup.net>
Wed, 30 May 2018 16:24:53 +0000 (13:24 -0300)
lib/keyringer/actions/pwgen

index ab5cb8401a86d93497cb7dbbcde33367689a8166..e1e8947d0a786617469cc7da7f4644795c06266f 100755 (executable)
@@ -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
 }