diff options
author | Ville Skyttä <ville.skytta@iki.fi> | 2015-06-08 14:22:54 +0300 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2015-06-08 13:43:31 +0200 |
commit | 56b7663f73d44bf4774bfb934befb7071ed41280 (patch) | |
tree | a3519bcdd6ab9a98ba36658555a8ef749787eed6 /docs/examples/smtp-ssl.c | |
parent | 025dbe46df8385c3d0a76874758232e7eabc5013 (diff) | |
download | curl-56b7663f73d44bf4774bfb934befb7071ed41280.tar.gz |
docs: Spelling fixes
Diffstat (limited to 'docs/examples/smtp-ssl.c')
-rw-r--r-- | docs/examples/smtp-ssl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/examples/smtp-ssl.c b/docs/examples/smtp-ssl.c index 9a68a7ff9..a774403fc 100644 --- a/docs/examples/smtp-ssl.c +++ b/docs/examples/smtp-ssl.c @@ -111,7 +111,7 @@ int main(void) * they have mentioned in their server certificate's commonName (or * subjectAltName) fields, libcurl will refuse to connect. You can skip * this check, but this will make the connection less secure. */ -#ifdef SKIP_HOSTNAME_VERFICATION +#ifdef SKIP_HOSTNAME_VERIFICATION curl_easy_setopt(curl, CURLOPT_SSL_VERIFYHOST, 0L); #endif |