aboutsummaryrefslogtreecommitdiff
path: root/docs/examples/smtp-ssl.c
diff options
context:
space:
mode:
authorVille Skyttä <ville.skytta@iki.fi>2015-06-08 14:22:54 +0300
committerDaniel Stenberg <daniel@haxx.se>2015-06-08 13:43:31 +0200
commit56b7663f73d44bf4774bfb934befb7071ed41280 (patch)
treea3519bcdd6ab9a98ba36658555a8ef749787eed6 /docs/examples/smtp-ssl.c
parent025dbe46df8385c3d0a76874758232e7eabc5013 (diff)
docs: Spelling fixes
Diffstat (limited to 'docs/examples/smtp-ssl.c')
-rw-r--r--docs/examples/smtp-ssl.c2
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