Change authmode default to Required on client
diff --git a/include/mbedtls/ssl.h b/include/mbedtls/ssl.h
index 2642ac6..abe004c 100644
--- a/include/mbedtls/ssl.h
+++ b/include/mbedtls/ssl.h
@@ -1156,8 +1156,9 @@
* \param ssl SSL context
* \param authmode can be:
*
- * SSL_VERIFY_NONE: peer certificate is not checked (default),
- * this is insecure and SHOULD be avoided.
+ * SSL_VERIFY_NONE: peer certificate is not checked
+ * (default on server)
+ * (insecure on client)
*
* SSL_VERIFY_OPTIONAL: peer certificate is checked, however the
* handshake continues even if verification failed;