Changeset 67
- Timestamp:
- 12/27/05 14:10:21 (3 years ago)
- Files:
-
- trunk/Libs/SSHAgent.m (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/Libs/SSHAgent.m
r41 r67 749 749 lines = [theOutput componentsSeparatedByString:@"\n"]; 750 750 751 keys = [ [NSMutableArray array] retain];751 keys = [NSMutableArray array]; 752 752 753 753 for(i=0; i < [lines count]; i++) … … 767 767 type = @"?"; 768 768 769 key = [ [NSArray arrayWithObjects:769 key = [NSArray arrayWithObjects: 770 770 [NSString stringWithString:[[columns objectAtIndex:2] stringByAbbreviatingWithTildeInPath]], 771 771 [NSString stringWithString:[columns objectAtIndex:1]], 772 772 [NSString stringWithString:type], 773 nil] retain]; 774 773 nil]; 775 774 [keys addObject:key]; 776 775 }
