diff options
author | Daniel Stenberg <daniel@haxx.se> | 2021-11-03 10:00:07 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2021-11-03 10:00:07 +0100 |
commit | 1b452980af1210f1dce0e3af59c5b698f90afe6a (patch) | |
tree | fc7b81b3dbd318e78e4a78ea81e02a65ccea059f /docs/examples/smtp-vrfy.c | |
parent | a75fdab8d69ab7c8297e376673538cf2df9cf018 (diff) | |
download | curl-1b452980af1210f1dce0e3af59c5b698f90afe6a.tar.gz |
fixup too long lines
Diffstat (limited to 'docs/examples/smtp-vrfy.c')
-rw-r--r-- | docs/examples/smtp-vrfy.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/examples/smtp-vrfy.c b/docs/examples/smtp-vrfy.c index c85082dac..26819a50a 100644 --- a/docs/examples/smtp-vrfy.c +++ b/docs/examples/smtp-vrfy.c @@ -66,10 +66,10 @@ int main(void) /* Free the list of recipients */ curl_slist_free_all(recipients); - /* Curl will not send the QUIT command until you call cleanup, so you should - * be able to re-use this connection for additional requests. It may not be - * a good idea to keep the connection open for a very long time though - * (more than a few minutes may result in the server timing out the + /* curl will not send the QUIT command until you call cleanup, so you + * should be able to re-use this connection for additional requests. It + * may not be a good idea to keep the connection open for a very long time + * though (more than a few minutes may result in the server timing out the * connection) and you do want to clean up in the end. */ curl_easy_cleanup(curl); |