diff options
author | Eric Blake <eblake@redhat.com> | 2015-12-21 08:54:17 -0700 |
---|---|---|
committer | Michael Tokarev <mjt@tls.msk.ru> | 2016-01-11 11:39:28 +0300 |
commit | b3afe33526eca082cd5b0cdb12aabf5315cdf68b (patch) | |
tree | d62a393b60ce36234d09c56c324bb1e319b978a5 /include | |
parent | 82407515fe36c2d6cbd62f24c04f700f7dc25a69 (diff) |
crypto: Fix typo in example
The example code wouldn't even compile, since it did not use
a consistent spelling for the Error ** parameter.
Signed-off-by: Eric Blake <eblake@redhat.com>
Reviewed-by: Daniel P. Berrange <berrange@redhat.com>
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
Diffstat (limited to 'include')
-rw-r--r-- | include/crypto/tlssession.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/crypto/tlssession.h b/include/crypto/tlssession.h index b38fe6954d..d356a8dc17 100644 --- a/include/crypto/tlssession.h +++ b/include/crypto/tlssession.h @@ -56,7 +56,7 @@ * * static int mysock_run_tls(int sockfd, * QCryptoTLSCreds *creds, - * Error *erp) + * Error *errp) * { * QCryptoTLSSession *sess; * |