diff options
Diffstat (limited to 'Functions/Zftp/zfmark')
-rw-r--r-- | Functions/Zftp/zfmark | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Functions/Zftp/zfmark b/Functions/Zftp/zfmark index 8d35ce45a..74cc702ac 100644 --- a/Functions/Zftp/zfmark +++ b/Functions/Zftp/zfmark @@ -37,8 +37,9 @@ fi if [[ -n $ZFTP_HOST ]]; then bkmarks[$1]="${ZFTP_USER}@${ZFTP_HOST}:${ZFTP_PWD}" -elif [[ -n $zflastsession ]]; then - bkmarks[$1]="${zflastuser}@${zflastsession}" +elif [[ -n $zfconfig[lastloc_$ZFTP_SESSION] ]]; then + bkmarks[$1]="${zfconig[lastuser_$ZFTP_SESSION]}@\ +${zfconfig[lastloc_$ZFTP_SESSION]}" else print "No current or recent ZFTP session to bookmark." >&2 return 1 |