From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:40215) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Td6Yv-0001Fd-Gt for qemu-devel@nongnu.org; Mon, 26 Nov 2012 16:49:58 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Td6Yu-00040e-8X for qemu-devel@nongnu.org; Mon, 26 Nov 2012 16:49:57 -0500 Received: from mail-ie0-f173.google.com ([209.85.223.173]:53555) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Td6Yu-00040Z-4z for qemu-devel@nongnu.org; Mon, 26 Nov 2012 16:49:56 -0500 Received: by mail-ie0-f173.google.com with SMTP id e13so6731220iej.4 for ; Mon, 26 Nov 2012 13:49:53 -0800 (PST) From: Anthony Liguori In-Reply-To: <1352503875-30263-1-git-send-email-catalinp@google.com> References: <1352503875-30263-1-git-send-email-catalinp@google.com> Date: Mon, 26 Nov 2012 15:49:49 -0600 Message-ID: <87fw3wrq4i.fsf@codemonkey.ws> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Subject: Re: [Qemu-devel] [PATCH] vnc: fix option misspelling ("non-adapative" -> "non-adaptive") List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Catalin Patulea , qemu-devel@nongnu.org Catalin Patulea writes: > 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. > Applied. Thanks. Regards, Anthony Liguori > 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