From 0e235423a7a77f6b66f43df9800613e8b351ec9e Mon Sep 17 00:00:00 2001 From: Stefan Reitshamer Date: Tue, 16 Aug 2011 15:48:54 -0400 Subject: [PATCH] print computer UUID when listing available backups --- ArqRestoreCommand.m | 1 + 1 file changed, 1 insertion(+) diff --git a/ArqRestoreCommand.m b/ArqRestoreCommand.m index a534784..e847393 100644 --- a/ArqRestoreCommand.m +++ b/ArqRestoreCommand.m @@ -145,6 +145,7 @@ } else { printf(" (unknown computer)"); } + printf(" UUID %s", [computerUUID UTF8String]); NSString *computerUUIDPath = [computerUUIDPrefix stringByAppendingPathComponent:computerUUID]; NSString *computerBucketsPrefix = [computerUUIDPath stringByAppendingPathComponent:@"buckets"]; NSArray *s3BucketUUIDPaths = [s3 pathsWithPrefix:computerBucketsPrefix error:error];