mirror of
https://github.com/borgbackup/borg.git
synced 2025-03-04 02:28:34 +00:00
Merge pull request #6632 from ThomasWaldmann/fix-info-authenticated-1.2
info: fix authenticated mode repo to show "Encrypted: No", fixes #6462
This commit is contained in:
commit
b2d0af9487
1 changed files with 1 additions and 1 deletions
|
@ -1471,7 +1471,7 @@ class Archiver:
|
|||
json_print(info)
|
||||
else:
|
||||
encryption = 'Encrypted: '
|
||||
if key.NAME == 'plaintext':
|
||||
if key.NAME in ('plaintext', 'authenticated'):
|
||||
encryption += 'No'
|
||||
else:
|
||||
encryption += 'Yes (%s)' % key.NAME
|
||||
|
|
Loading…
Add table
Reference in a new issue