From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:38675) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TWyVy-00060v-Iw for qemu-devel@nongnu.org; Fri, 09 Nov 2012 19:01:35 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TWyVx-00016W-PT for qemu-devel@nongnu.org; Fri, 09 Nov 2012 19:01:34 -0500 Received: from mail-ie0-f173.google.com ([209.85.223.173]:37569) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TWyVx-00016S-K0 for qemu-devel@nongnu.org; Fri, 09 Nov 2012 19:01:33 -0500 Received: by mail-ie0-f173.google.com with SMTP id 17so6474365iea.4 for ; Fri, 09 Nov 2012 16:01:33 -0800 (PST) From: Catalin Patulea Date: Fri, 9 Nov 2012 19:01:26 -0500 Message-Id: <1352505686-12733-1-git-send-email-catalinp@google.com> In-Reply-To: References: Subject: [Qemu-devel] [PATCH] vnc: fix option misspelling ("non-adapative" -> "non-adaptive") List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Peter Maydell , Catalin Patulea Signed-off-by: Catalin Patulea --- D'oh, that was really stupid. Here it is with the correct length. ui/vnc.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/ui/vnc.c b/ui/vnc.c index 61f120e..ba30362 100644 --- a/ui/vnc.c +++ b/ui/vnc.c @@ -2945,7 +2945,7 @@ void vnc_display_open(DisplayState *ds, const char *display, Error **errp) #endif } else if (strncmp(options, "lossy", 5) == 0) { vs->lossy = true; - } else if (strncmp(options, "non-adapative", 13) == 0) { + } else if (strncmp(options, "non-adaptive", 12) == 0) { vs->non_adaptive = true; } else if (strncmp(options, "share=", 6) == 0) { if (strncmp(options+6, "ignore", 6) == 0) { -- 1.7.7.3