diff options
author | stuconnolly <stuart02@gmail.com> | 2012-09-06 09:38:20 +0000 |
---|---|---|
committer | stuconnolly <stuart02@gmail.com> | 2012-09-06 09:38:20 +0000 |
commit | 71e2c109a958b6663192948298b60fdba869b93a (patch) | |
tree | af778a83a8ac5d88b831f93d0543aaef7497a88a /Frameworks/PostgresKit | |
parent | 669d45c54dc297d3a553f93f9ff62b4705f43427 (diff) | |
download | sequelpro-71e2c109a958b6663192948298b60fdba869b93a.tar.gz sequelpro-71e2c109a958b6663192948298b60fdba869b93a.tar.bz2 sequelpro-71e2c109a958b6663192948298b60fdba869b93a.zip |
Fix parameter typo causing connections to fail.
Diffstat (limited to 'Frameworks/PostgresKit')
-rw-r--r-- | Frameworks/PostgresKit/Source/FLXPostgresConnection.m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Frameworks/PostgresKit/Source/FLXPostgresConnection.m b/Frameworks/PostgresKit/Source/FLXPostgresConnection.m index d9060a5f..2855e22d 100644 --- a/Frameworks/PostgresKit/Source/FLXPostgresConnection.m +++ b/Frameworks/PostgresKit/Source/FLXPostgresConnection.m @@ -45,7 +45,7 @@ static const char *FLXPostgresHostParam = "host"; static const char *FLXPostgresPasswordParam = "password"; static const char *FLXPostgresPortParam = "port"; static const char *FLXPostgresDatabaseParam = "dbname"; -static const char *FLXPostgresConnectionTimeoutParam = "conect_timeout"; +static const char *FLXPostgresConnectionTimeoutParam = "connect_timeout"; static const char *FLXPostgresClientEncodingParam = "client_encoding"; static const char *FLXPostgresKeepAliveParam = "keepalives"; static const char *FLXPostgresKeepAliveIntervalParam = "keepalives_interval"; |