From: Eric Blake Date: Mon, 21 Dec 2015 15:54:17 +0000 (-0700) Subject: crypto: Fix typo in example X-Git-Tag: v2.6.0-rc0~233^2~13 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=b3afe33526eca082cd5b0cdb12aabf5315cdf68b;p=users%2Fdwmw2%2Fqemu.git 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 Reviewed-by: Daniel P. Berrange Signed-off-by: Michael Tokarev --- 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; *