From mboxrd@z Thu Jan 1 00:00:00 1970 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 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> Subject: [Qemu-devel] [PATCH 4/6] vnc.c: warn about ignored option List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@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 */ -- 1.6.6