From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:44113) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UN3AG-0007ca-S7 for qemu-devel@nongnu.org; Tue, 02 Apr 2013 11:30:26 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UN3AF-0005aL-9c for qemu-devel@nongnu.org; Tue, 02 Apr 2013 11:30:24 -0400 Sender: fluxion Date: Tue, 2 Apr 2013 10:26:56 -0500 From: mdroth Message-ID: <20130402152656.GB11564@vm> References: <20130221202028.GA2302@mail.hallyn.com> <512683B8.4050901@msgid.tls.msk.ru> <20130221222827.GI10005@vm> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20130221222827.GI10005@vm> Subject: Re: [Qemu-devel] [PATCH] fix wrong output with 'info chardev' for tcp socket. List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Michael Tokarev Cc: qemu-stable , qemu-devel@nongnu.org, "Serge E. Hallyn" On Thu, Feb 21, 2013 at 04:28:27PM -0600, mdroth wrote: > On Fri, Feb 22, 2013 at 12:29:44AM +0400, Michael Tokarev wrote: > > 22.02.2013 00:20, Serge E. Hallyn wrote: > > > The snprintf format isn't taking into account the new 'left' and > > > 'right' variables (for ipv6 []) when placing the ':', which should > > > go immediately before the port. > > > > This fixes actual isse (also found by Serge), where `info chardev' > > prints `tcp:127.0.0.14444,server,nowait' for a monitor running on port > > 4444. > > > > This is definitely a stable material (CCed). Fix made it upstream through a separate patch: ec9f828341cb5e9cc3ad0bdbbd6989884daf823a > > > > Reviewed-by: Michael Tokarev > > Reviewed-by: Michael Roth > > > > > Thanks! > > > > /mjt > > > > > Signed-off-by: Serge Hallyn > > > --- > > > qemu-char.c | 2 +- > > > 1 file changed, 1 insertion(+), 1 deletion(-) > > > > > > diff --git a/qemu-char.c b/qemu-char.c > > > index e4b0f53..3e152e1 100644 > > > --- a/qemu-char.c > > > +++ b/qemu-char.c > > > @@ -2482,7 +2482,7 @@ static CharDriverState *qemu_chr_open_socket_fd(int fd, bool do_nodelay, > > > s->do_nodelay = do_nodelay; > > > getnameinfo((struct sockaddr *) &ss, ss_len, host, sizeof(host), > > > serv, sizeof(serv), NI_NUMERICHOST | NI_NUMERICSERV); > > > - snprintf(chr->filename, 256, "%s:%s:%s%s%s%s", > > > + snprintf(chr->filename, 256, "%s:%s%s%s:%s%s", > > > is_telnet ? "telnet" : "tcp", > > > left, host, right, serv, > > > is_listen ? ",server" : ""); > > > > > > >