Skip to content

Commit

Permalink
Release the 2.7.2
Browse files Browse the repository at this point in the history
git-svn-id: https://code.crt.realtors.org/svn/odbcretsdrv/ezrets/tags/2.7.2@1393 fe7ac059-47f5-0310-8599-d0339b4e125c
  • Loading branch information
Keith T. Garner committed Feb 7, 2011
2 parents 7b7682b + 5a2208b commit f272550
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 4 deletions.
11 changes: 11 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
Changes since 2.7.1
-------------------
Enhancement/BugFix
* For RETS servers doing SSL, ezRETS will not attempt to verify the
SSL certificate from the server. This behaviour will chance in
the future with some configuration options.

Developer Notes
* Small fix to building on OS X where a library was linked
dynamically instead of staticly

Changes since 2.7.0
-------------------
Bug fix
Expand Down
1 change: 1 addition & 0 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ if test -n "$GCC"; then
fi

dnl AC_PROG_LIBTOOL
AC_CHECK_SIZEOF(void*)
AC_CHECK_SIZEOF(long)
AC_CHECK_TYPES(long long)
AC_CHECK_PROG(my_have_perl, perl, yes, no)
Expand Down
4 changes: 4 additions & 0 deletions project/common/src/DataSource.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1085,6 +1085,10 @@ lr::RetsSessionPtr CLASS::CreateRetsSession() const
session->SetProxy(mProxyUrl, mProxyPassword);
}

// Until I have time to ship an SSL CA bundle, or configure a
// pointer to it, we'll be naughty and just not verify shit.
session->SetModeFlags(lr::RetsSession::MODE_NO_SSL_VERIFY);

return session;
}

Expand Down
4 changes: 0 additions & 4 deletions project/driver/src/RetsDBC.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -669,10 +669,6 @@ bool RetsDBC::login()
session->SetHttpLogger(mRetsHttpLogger.get());
}

// Until I have time to ship an SSL CA bundle, or configure a
// pointer to it, we'll be naughty and just not verify shit.
session->SetModeFlags(lr::RetsSession::MODE_NO_SSL_VERIFY);

success = mDataSource.RetsLogin(session);
if (success)
{
Expand Down

0 comments on commit f272550

Please sign in to comment.