From patchwork Fri Sep 28 16:11:49 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Stefan Weil X-Patchwork-Id: 187861 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 292742C00D3 for ; Sat, 29 Sep 2012 04:22:55 +1000 (EST) Received: from localhost ([::1]:49658 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1THfDB-0006By-5J for incoming@patchwork.ozlabs.org; Fri, 28 Sep 2012 14:22:53 -0400 Received: from eggs.gnu.org ([208.118.235.92]:33639) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1THfD2-0006Aw-RE for qemu-devel@nongnu.org; Fri, 28 Sep 2012 14:22:45 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1THfD1-0004Ed-OR for qemu-devel@nongnu.org; Fri, 28 Sep 2012 14:22:44 -0400 Received: from v220110690675601.yourvserver.net ([78.47.199.172]:45795) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1THdAN-0000eO-Mm; Fri, 28 Sep 2012 12:11:51 -0400 Received: from localhost (v220110690675601.yourvserver.net.local [127.0.0.1]) by v220110690675601.yourvserver.net (Postfix) with ESMTP id 29CC8728003C; Fri, 28 Sep 2012 18:11:50 +0200 (CEST) X-Virus-Scanned: Debian amavisd-new at weilnetz.de Received: from v220110690675601.yourvserver.net ([127.0.0.1]) by localhost (v220110690675601.yourvserver.net [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id aOG-K66hTWLD; Fri, 28 Sep 2012 18:11:49 +0200 (CEST) Received: by v220110690675601.yourvserver.net (Postfix, from userid 1000) id BF390728003D; Fri, 28 Sep 2012 18:11:49 +0200 (CEST) From: Stefan Weil To: qemu-trivial@nongnu.org Date: Fri, 28 Sep 2012 18:11:49 +0200 Message-Id: <1348848709-14118-1-git-send-email-sw@weilnetz.de> X-Mailer: git-send-email 1.7.10 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 3) X-Received-From: 78.47.199.172 Cc: Stefan Weil , Anthony Liguori , qemu-devel@nongnu.org Subject: [Qemu-devel] [PATCH] vnc: Fix spelling (hellmen -> hellman) in comment 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 algorithm was named after Martin E. Hellman. Signed-off-by: Stefan Weil --- ui/vnc-tls.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/vnc-tls.c b/ui/vnc-tls.c index 3aaa939..a7f7d07 100644 --- a/ui/vnc-tls.c +++ b/ui/vnc-tls.c @@ -49,7 +49,7 @@ static int vnc_tls_initialize(void) if (gnutls_global_init () < 0) return 0; - /* XXX ought to re-generate diffie-hellmen params periodically */ + /* XXX ought to re-generate diffie-hellman params periodically */ if (gnutls_dh_params_init (&dh_params) < 0) return 0; if (gnutls_dh_params_generate2 (dh_params, DH_BITS) < 0)