summaryrefslogtreecommitdiff
path: root/Command
diff options
context:
space:
mode:
Diffstat (limited to 'Command')
-rw-r--r--Command/Fsck.hs2
-rw-r--r--Command/Whereis.hs2
2 files changed, 2 insertions, 2 deletions
diff --git a/Command/Fsck.hs b/Command/Fsck.hs
index 6ccec05fb..bad60d30d 100644
--- a/Command/Fsck.hs
+++ b/Command/Fsck.hs
@@ -131,7 +131,7 @@ checkKeyNumCopies key file numcopies = do
let present = length safelocations
if present < needed
then do
- ppuuids <- Remote.prettyPrintUUIDs untrustedlocations
+ ppuuids <- Remote.prettyPrintUUIDs "untrusted" untrustedlocations
warning $ missingNote (filename file key) present needed ppuuids
return False
else return True
diff --git a/Command/Whereis.hs b/Command/Whereis.hs
index 314fef782..f80c823b7 100644
--- a/Command/Whereis.hs
+++ b/Command/Whereis.hs
@@ -33,7 +33,7 @@ perform key = do
if null uuids
then stop
else do
- pp <- prettyPrintUUIDs uuids
+ pp <- prettyPrintUUIDs "whereis" uuids
showLongNote pp
showOutput
next $ return True