aboutsummaryrefslogtreecommitdiffstats
path: root/Source/SPKeychain.m
diff options
context:
space:
mode:
authorMax <post@wickenrode.com>2018-02-24 22:48:56 +0100
committerMax <post@wickenrode.com>2018-02-24 22:48:56 +0100
commit030eac5e17c69e375d7724e489483db72e791b9c (patch)
tree80879fb02c15780cfbf0143144af068ef6b0284f /Source/SPKeychain.m
parent586312b0c33ce751d7524ccb810c3b486fc7984e (diff)
downloadsequelpro-030eac5e17c69e375d7724e489483db72e791b9c.tar.gz
sequelpro-030eac5e17c69e375d7724e489483db72e791b9c.tar.bz2
sequelpro-030eac5e17c69e375d7724e489483db72e791b9c.zip
#2979, #2437, #2247, #1836: Enable mysql cleartext auth without access to keychain and with a warning to the user
Diffstat (limited to 'Source/SPKeychain.m')
-rw-r--r--Source/SPKeychain.m9
1 files changed, 0 insertions, 9 deletions
diff --git a/Source/SPKeychain.m b/Source/SPKeychain.m
index 94b561c5..61b1f5a8 100644
--- a/Source/SPKeychain.m
+++ b/Source/SPKeychain.m
@@ -43,15 +43,6 @@
if (!(self = [super init])) {
return nil;
}
-
- NSString *cleartext = [NSProcessInfo processInfo].environment[@"LIBMYSQL_ENABLE_CLEARTEXT_PLUGIN"];
- if (cleartext != nil) {
- NSLog(@"LIBMYSQL_ENABLE_CLEARTEXT_PLUGIN is set. Disabling keychain access. See Issue #2437");
-
- [self release];
- return nil;
- }
-
return self;
}