From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:35873) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TWy2l-0007Nt-Ov for qemu-devel@nongnu.org; Fri, 09 Nov 2012 18:31:24 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TWy2k-00019g-RW for qemu-devel@nongnu.org; Fri, 09 Nov 2012 18:31:23 -0500 Received: from mail-ia0-f173.google.com ([209.85.210.173]:37288) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TWy2k-00019W-N4 for qemu-devel@nongnu.org; Fri, 09 Nov 2012 18:31:22 -0500 Received: by mail-ia0-f173.google.com with SMTP id m10so3054638iam.4 for ; Fri, 09 Nov 2012 15:31:22 -0800 (PST) From: Catalin Patulea Date: Fri, 9 Nov 2012 18:31:15 -0500 Message-Id: <1352503875-30263-1-git-send-email-catalinp@google.com> 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: Catalin Patulea Signed-off-by: Catalin Patulea --- A cursory web search shows that this flag doesn't show up much other than in QEMU mailing lists and source. I don't think this will break anything. ui/vnc.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/ui/vnc.c b/ui/vnc.c index 61f120e..073fbe7 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", 13) == 0) { vs->non_adaptive = true; } else if (strncmp(options, "share=", 6) == 0) { if (strncmp(options+6, "ignore", 6) == 0) { -- 1.7.7.3