From patchwork Tue Jan 26 23:14:43 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Paolo Bonzini X-Patchwork-Id: 43755 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [199.232.76.165]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id B81C9B7CE2 for ; Wed, 27 Jan 2010 10:24:45 +1100 (EST) Received: from localhost ([127.0.0.1]:53091 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NZulP-000400-Dk for incoming@patchwork.ozlabs.org; Tue, 26 Jan 2010 18:24:03 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1NZuch-0000Id-CC for qemu-devel@nongnu.org; Tue, 26 Jan 2010 18:15:03 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1NZucc-0000F7-2k for qemu-devel@nongnu.org; Tue, 26 Jan 2010 18:15:02 -0500 Received: from [199.232.76.173] (port=56895 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NZucb-0000Ey-S7 for qemu-devel@nongnu.org; Tue, 26 Jan 2010 18:14:57 -0500 Received: from mx1.redhat.com ([209.132.183.28]:47914) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1NZucb-00007W-FC for qemu-devel@nongnu.org; Tue, 26 Jan 2010 18:14:57 -0500 Received: from int-mx04.intmail.prod.int.phx2.redhat.com (int-mx04.intmail.prod.int.phx2.redhat.com [10.5.11.17]) by mx1.redhat.com (8.13.8/8.13.8) with ESMTP id o0QNEuY4022853 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Tue, 26 Jan 2010 18:14:56 -0500 Received: from localhost.localdomain (vpn2-8-187.ams2.redhat.com [10.36.8.187]) by int-mx04.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id o0QNEkUK032050 for ; Tue, 26 Jan 2010 18:14:54 -0500 From: Paolo Bonzini To: qemu-devel@nongnu.org Date: Wed, 27 Jan 2010 00:14:43 +0100 Message-Id: <1264547685-21129-5-git-send-email-pbonzini@redhat.com> In-Reply-To: <1264547685-21129-1-git-send-email-pbonzini@redhat.com> References: <1264547685-21129-1-git-send-email-pbonzini@redhat.com> X-Scanned-By: MIMEDefang 2.67 on 10.5.11.17 X-detected-operating-system: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Qemu-devel] [PATCH 4/6] vnc.c: warn about ignored option X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Signed-off-by: Paolo Bonzini --- vnc.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/vnc.c b/vnc.c index cc2a26e..9ebee09 100644 --- a/vnc.c +++ b/vnc.c @@ -2563,6 +2563,7 @@ int vnc_display_open(DisplayState *ds, const char *display) reverse = 1; } else if (strncmp(options, "to=", 3) == 0) { to_port = atoi(options+3) + 5900; + fprintf(stderr, "qemu: warning: to= option for -vnc ignored\n"); #ifdef CONFIG_VNC_SASL } else if (strncmp(options, "sasl", 4) == 0) { sasl = 1; /* Require SASL auth */