diff options
author | Daniel P. Berrange <berrange@redhat.com> | 2016-01-13 12:22:33 +0000 |
---|---|---|
committer | Daniel P. Berrange <berrange@redhat.com> | 2016-01-20 11:31:01 +0000 |
commit | 821791b5055788937ddfa67a183c0ff54129efe4 (patch) | |
tree | bda1e7ac40c06d5746a8bcb2f1bd6c9f2b376c62 /include/io/channel-tls.h | |
parent | e155494cf0b876c45c3c68a9ab6c641aac22dfdf (diff) |
io: fix description of @errp parameter initialization
The "Error **errp" parameters must be NULL initialized
not uninitialized.
Signed-off-by: Daniel P. Berrange <berrange@redhat.com>
Diffstat (limited to 'include/io/channel-tls.h')
-rw-r--r-- | include/io/channel-tls.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/io/channel-tls.h b/include/io/channel-tls.h index 0298b1770e..322eccbaae 100644 --- a/include/io/channel-tls.h +++ b/include/io/channel-tls.h @@ -55,7 +55,7 @@ struct QIOChannelTLS { * @master: the underlying channel object * @creds: the credentials to use for TLS handshake * @aclname: the access control list for validating clients - * @errp: pointer to an uninitialized error object + * @errp: pointer to a NULL-initialized error object * * Create a new TLS channel that runs the server side of * a TLS session. The TLS session handshake will use the @@ -85,7 +85,7 @@ qio_channel_tls_new_server(QIOChannel *master, * @master: the underlying channel object * @creds: the credentials to use for TLS handshake * @hostname: the user specified server hostname - * @errp: pointer to an uninitialized error object + * @errp: pointer to a NULL-initialized error object * * Create a new TLS channel that runs the client side of * a TLS session. The TLS session handshake will use the |