diff options
author | Dan Fandrich <dan@coneharvesters.com> | 2011-05-06 13:48:24 -0700 |
---|---|---|
committer | Dan Fandrich <dan@coneharvesters.com> | 2011-05-06 13:48:24 -0700 |
commit | 212d8c8f652ee4c88b3f4dc6f73f70eabc3a5a71 (patch) | |
tree | a04082db1aaf49605acc22631d9aa2246b41f5cf | |
parent | b996b202c4ff644d45b1bff48c90bc0a4f6962b6 (diff) |
Fixed LDAP after RTSP readwrite change
-rw-r--r-- | lib/ldap.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/ldap.c b/lib/ldap.c index 6733ef46b..62a9ffc19 100644 --- a/lib/ldap.c +++ b/lib/ldap.c @@ -140,6 +140,7 @@ const struct Curl_handler Curl_handler_ldap = { ZERO_NULL, /* doing_getsock */ ZERO_NULL, /* perform_getsock */ ZERO_NULL, /* disconnect */ + ZERO_NULL, /* readwrite */ PORT_LDAP, /* defport */ CURLPROTO_LDAP, /* protocol */ PROTOPT_NONE /* flags */ @@ -163,6 +164,7 @@ const struct Curl_handler Curl_handler_ldaps = { ZERO_NULL, /* doing_getsock */ ZERO_NULL, /* perform_getsock */ ZERO_NULL, /* disconnect */ + ZERO_NULL, /* readwrite */ PORT_LDAPS, /* defport */ CURLPROTO_LDAP | CURLPROTO_LDAPS, /* protocol */ PROTOPT_SSL /* flags */ |