]> git.ipfire.org Git - thirdparty/systemd.git/blobdiff - src/resolve/resolved-dnstls-openssl.c
tree-wide: use the usual spelling of "cannot"
[thirdparty/systemd.git] / src / resolve / resolved-dnstls-openssl.c
index b217417a1ac8e89e7621012197e4d503f6875ae1..fbcee7fc634a80e35edbc1fe10589a3a0d243659 100644 (file)
@@ -327,7 +327,7 @@ ssize_t dnstls_stream_writev(DnsStream *stream, const struct iovec *iov, size_t
         if (iovcnt == 1)
                 return dnstls_stream_write(stream, iov[0].iov_base, iov[0].iov_len);
 
-        /* As of now, OpenSSL can not accumulate multiple writes, so join into a
+        /* As of now, OpenSSL cannot accumulate multiple writes, so join into a
            single buffer. Suboptimal, but better than multiple SSL_write calls. */
         count = iovec_total_size(iov, iovcnt);
         buf = new(char, count);