password-store

Simple password manager using gpg and ordinary unix directories
git clone https://git.zx2c4.com/password-store
Log | Files | Refs | README | LICENSE

commit fcbec6c0181495740ee39337efa9b5d425431df5
parent af3b815c91a35cc8a6054bba64ceb1f4a71b9649
Author: Jason A. Donenfeld <Jason@zx2c4.com>
Date:   Mon, 11 May 2015 14:39:35 +0200

Use 6 Xs for mktemp

Diffstat:
Msrc/password-store.sh | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/password-store.sh b/src/password-store.sh @@ -411,7 +411,7 @@ cmd_edit() { local passfile="$PREFIX/$path.gpg" tmpdir #Defines $SECURE_TMPDIR - local tmp_file="$(mktemp -u "$SECURE_TMPDIR/XXXXX")-${path//\//-}.txt" + local tmp_file="$(mktemp -u "$SECURE_TMPDIR/XXXXXX")-${path//\//-}.txt" local action="Add"