~ubuntu-branches/ubuntu/utopic/curl/utopic

« back to all changes in this revision

Viewing changes to lib/axtls.c

  • Committer: Package Import Robot
  • Author(s): Marc Deslauriers
  • Date: 2013-12-20 09:13:22 UTC
  • mfrom: (3.4.44 sid)
  • Revision ID: package-import@ubuntu.com-20131220091322-lqk9xf5wba7vsyfh
Tags: 7.34.0-1ubuntu1
* Resynchronize on Debian, remaining changes
  - Drop dependencies not in main:
    + Build-Depends: Drop stunnel4 and libssh2-1-dev.
    + Drop libssh2-1-dev from binary package Depends.
  - Add new libcurl3-udeb package.
  - Add new curl-udeb package.
* Dropped undocumented Build-Depends change to automake1.9.

Show diffs side-by-side

added added

removed removed

Lines of Context:
164
164
  case CURL_SSLVERSION_TLSv1:
165
165
    break;
166
166
  default:
167
 
    failf(data, "axTLS only supports TLSv1");
 
167
    failf(data, "axTLS only supports TLS 1.0 and 1.1, "
 
168
          "and it cannot be specified which one to use");
168
169
    return CURLE_SSL_CONNECT_ERROR;
169
170
  }
170
171