From patchwork Mon Dec 21 15:54:17 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Eric Blake X-Patchwork-Id: 559594 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [IPv6:2001:4830:134:3::11]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 2C0D6140320 for ; Tue, 22 Dec 2015 02:54:52 +1100 (AEDT) Authentication-Results: ozlabs.org; dkim=fail reason="signature verification failed" (2048-bit key; secure) header.d=comcast.net header.i=@comcast.net header.b=rwX7k7XO; dkim-atps=neutral Received: from localhost ([::1]:45781 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aB2nS-0007e6-3U for incoming@patchwork.ozlabs.org; Mon, 21 Dec 2015 10:54:50 -0500 Received: from eggs.gnu.org ([2001:4830:134:3::10]:57174) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aB2nA-0007Gk-N9 for qemu-devel@nongnu.org; Mon, 21 Dec 2015 10:54:33 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aB2n5-0003ZH-NM for qemu-devel@nongnu.org; Mon, 21 Dec 2015 10:54:32 -0500 Received: from resqmta-po-03v.sys.comcast.net ([2001:558:fe16:19:96:114:154:162]:55956) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aB2n5-0003Ym-HF for qemu-devel@nongnu.org; Mon, 21 Dec 2015 10:54:27 -0500 Received: from resomta-po-09v.sys.comcast.net ([96.114.154.233]) by resqmta-po-03v.sys.comcast.net with comcast id wFry1r00452QWKC01FuSxv; Mon, 21 Dec 2015 15:54:26 +0000 Received: from red.redhat.com ([24.10.254.122]) by resomta-po-09v.sys.comcast.net with comcast id wFuP1r0042fD5rL01FuRfi; Mon, 21 Dec 2015 15:54:26 +0000 From: Eric Blake To: qemu-devel@nongnu.org Date: Mon, 21 Dec 2015 08:54:17 -0700 Message-Id: <1450713257-17108-1-git-send-email-eblake@redhat.com> X-Mailer: git-send-email 2.4.3 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=comcast.net; s=q20140121; t=1450713266; bh=ks4sQWeCqioLjLF/E9e2Fytfzv1MTb44ATfHO91DwEE=; h=Received:Received:From:To:Subject:Date:Message-Id; b=rwX7k7XO6B88hyqD3lJfGKhXHe+88hU3Fw9xrIlxUbujGFAQoeQylgZ0wqgeNS37a UwOcn2yxzhoIPX7KPDSA3GnOT0w6EC0fEqYhvDbmmZAPbvby0ZSme4zWqjUTxUhW1c RYPgxEGIao68oF0lC0spWSD6INUhWppN5tlevKb8/tSp50b9g0pLmtL442KCIOuTZu oPtNm0sXLDdX9xUK3e72EgY3ltaKUDmSEhCmtyJAXuscgj3GGxhI+p8jtze1/Oss78 2SDa3LnNsPz3YkXOjVoCXGzaK1adjzpx6zabaiYJ/YtAsvSjcH+xuoKCKrDoMmMNgj r07s/l5xByNtg== X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 2001:558:fe16:19:96:114:154:162 Cc: qemu-trivial@nongnu.org Subject: [Qemu-devel] [PATCH] crypto: Fix typo in example X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org 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 --- include/crypto/tlssession.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/crypto/tlssession.h b/include/crypto/tlssession.h index b38fe69..d356a8d 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; *