tiny_tds 0.5.2.rc2 → 0.5.2.rc3
Sign up to get free protection for your applications and to get access to all the features.
- data/ext/patch/sspi_w_kerberos.diff +0 -10
- data/lib/tiny_tds/client.rb +1 -1
- data/lib/tiny_tds/version.rb +1 -1
- metadata +4 -4
@@ -1,13 +1,3 @@
|
|
1
|
-
commit cdf93abe5492ec706bca0db762be41526f343e92
|
2
|
-
Author: Frediano Ziglio <freddy77@gmail.com>
|
3
|
-
Date: Sun Nov 4 10:17:34 2012 +0000
|
4
|
-
|
5
|
-
Fix sspi if Kerberos is used
|
6
|
-
|
7
|
-
Authentication require more roud trips for Kerberos.
|
8
|
-
|
9
|
-
diff --git a/src/tds/sspi.c b/src/tds/sspi.c
|
10
|
-
index 680717a..077d58b 100644
|
11
1
|
--- a/src/tds/sspi.c
|
12
2
|
+++ b/src/tds/sspi.c
|
13
3
|
@@ -172,8 +172,19 @@ tds_sspi_handle_next(TDSSOCKET * tds, struct tds_authentication * tds_auth, size
|
data/lib/tiny_tds/client.rb
CHANGED
@@ -55,7 +55,7 @@ module TinyTds
|
|
55
55
|
|
56
56
|
def initialize(opts={})
|
57
57
|
if opts[:password] && opts[:password].to_s.strip != ''
|
58
|
-
opts[:password].to_s
|
58
|
+
opts[:password] = opts[:password].to_s
|
59
59
|
warn 'FreeTDS may have issues with passwords longer than 30 characters!' if opts[:password].length > 30
|
60
60
|
end
|
61
61
|
raise ArgumentError, 'missing :username option' if opts[:username].to_s.empty?
|
data/lib/tiny_tds/version.rb
CHANGED
metadata
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tiny_tds
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 2522453041
|
5
5
|
prerelease: 6
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 5
|
9
9
|
- 2
|
10
10
|
- rc
|
11
|
-
-
|
12
|
-
version: 0.5.2.
|
11
|
+
- 3
|
12
|
+
version: 0.5.2.rc3
|
13
13
|
platform: ruby
|
14
14
|
authors:
|
15
15
|
- Ken Collins
|
@@ -18,7 +18,7 @@ autorequire:
|
|
18
18
|
bindir: bin
|
19
19
|
cert_chain: []
|
20
20
|
|
21
|
-
date: 2012-11-
|
21
|
+
date: 2012-11-12 00:00:00 -05:00
|
22
22
|
default_executable:
|
23
23
|
dependencies:
|
24
24
|
- !ruby/object:Gem::Dependency
|