aboutsummaryrefslogtreecommitdiffstats
path: root/Source
diff options
context:
space:
mode:
authorrowanbeentje <rowan@beent.je>2011-01-05 23:39:47 +0000
committerrowanbeentje <rowan@beent.je>2011-01-05 23:39:47 +0000
commitb76edcbd414eb62c584bc3e7d5dcaf7053aa2a65 (patch)
treec3adcce91f20d7e78d562fe2616ebb19ceffb519 /Source
parent39cfd1e8e412572ea53e70f639a8a8031b478ac0 (diff)
downloadsequelpro-b76edcbd414eb62c584bc3e7d5dcaf7053aa2a65.tar.gz
sequelpro-b76edcbd414eb62c584bc3e7d5dcaf7053aa2a65.tar.bz2
sequelpro-b76edcbd414eb62c584bc3e7d5dcaf7053aa2a65.zip
- Improve on r3070 by also adding .crt extension support in the favourites
Diffstat (limited to 'Source')
-rw-r--r--Source/SPFavoritesPreferencePane.m4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/SPFavoritesPreferencePane.m b/Source/SPFavoritesPreferencePane.m
index 6b328d47..15725c3f 100644
--- a/Source/SPFavoritesPreferencePane.m
+++ b/Source/SPFavoritesPreferencePane.m
@@ -314,7 +314,7 @@
return;
}
- permittedFileTypes = [NSArray arrayWithObjects:@"pem", @"cert", @"", nil];
+ permittedFileTypes = [NSArray arrayWithObjects:@"pem", @"cert", @"crt", @"", nil];
[openPanel setAccessoryView:sslCertificateLocationHelp];
// SSL CA certificate file location:
@@ -325,7 +325,7 @@
return;
}
- permittedFileTypes = [NSArray arrayWithObjects:@"pem", @"cert", @"", nil];
+ permittedFileTypes = [NSArray arrayWithObjects:@"pem", @"cert", @"crt", @"", nil];
[openPanel setAccessoryView:sslCACertLocationHelp];
}