mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-01-22 04:25:18 +00:00
Fix error message for missing TLS write function
* src/rpc/virnettlscontext.c: s/read/write/
This commit is contained in:
parent
f2845177e2
commit
c8771867b8
@ -669,7 +669,7 @@ virNetTLSSessionPush(void *opaque, const void *buf, size_t len)
|
||||
{
|
||||
virNetTLSSessionPtr sess = opaque;
|
||||
if (!sess->writeFunc) {
|
||||
VIR_WARN("TLS session push with missing read function");
|
||||
VIR_WARN("TLS session push with missing write function");
|
||||
errno = EIO;
|
||||
return -1;
|
||||
};
|
||||
|
Loading…
x
Reference in New Issue
Block a user