aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2014-08-16 20:31:47 -0300
committerSilvio Rhatto <rhatto@riseup.net>2014-08-16 20:31:47 -0300
commitdf97a807e2c13a5d020d72f07058904b60f19cfd (patch)
tree86e1b0989b6dcf4cef65504aaaa7eac7b7174b0f
parentf63b965d14466197240a207509bddb9f204d64bc (diff)
downloadkeyringer-df97a807e2c13a5d020d72f07058904b60f19cfd.tar.gz
keyringer-df97a807e2c13a5d020d72f07058904b60f19cfd.tar.bz2
Edit: Unset RELATIVE_PATH before encrypting file
-rw-r--r--ChangeLog2
-rwxr-xr-xlib/keyringer/actions/edit4
2 files changed, 4 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 87bf35f..e9be9aa 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
2014-08-16 - Silvio Rhatto <rhatto@riseup.net>
+ Edit: Unset RELATIVE_PATH before encrypting file
+
New 'cp' action
Reset 'expiry' on keyringer_check_expiration, reported and fixed
diff --git a/lib/keyringer/actions/edit b/lib/keyringer/actions/edit
index a5f14d4..c9f3f12 100755
--- a/lib/keyringer/actions/edit
+++ b/lib/keyringer/actions/edit
@@ -59,9 +59,9 @@ wait
echo "Press any key when done using the file and you're sure that $APPNAME is closed."
read -s -n 1
-# Encrypt again
+# Encrypt again. Unset RELATIVE_PATH as it was already used to determine FILE path
export KEYRINGER_ADD_EXTENSION=false
-keyringer_exec encrypt "$BASEDIR" "$FILE" "$TMPWORK"
+RELATIVE_PATH="" keyringer_exec encrypt "$BASEDIR" "$FILE" "$TMPWORK"
# Check exit status
errcrypt="$?"