From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MA0Tv-0004qA-2X for qemu-devel@nongnu.org; Fri, 29 May 2009 07:42:39 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MA0Tq-0004oV-8j for qemu-devel@nongnu.org; Fri, 29 May 2009 07:42:38 -0400 Received: from [199.232.76.173] (port=52750 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MA0Tq-0004oR-3a for qemu-devel@nongnu.org; Fri, 29 May 2009 07:42:34 -0400 Received: from mx20.gnu.org ([199.232.41.8]:65305) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1MA0Tp-00028H-Kp for qemu-devel@nongnu.org; Fri, 29 May 2009 07:42:33 -0400 Received: from mail.codesourcery.com ([65.74.133.4]) by mx20.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1MA0Tm-0002OE-98 for qemu-devel@nongnu.org; Fri, 29 May 2009 07:42:30 -0400 From: Paul Brook Subject: Re: [Qemu-devel] [PATCH 08/11] slirp: Move smb, redir, tftp and bootp parameters and -net channel Date: Fri, 29 May 2009 12:42:27 +0100 References: <20090508103416.6080.44298.stgit@mchn012c.ww002.siemens.net> <20090508103418.6080.96654.stgit@mchn012c.ww002.siemens.net> <1243523221.4046.195.camel@blaa> In-Reply-To: <1243523221.4046.195.camel@blaa> MIME-Version: 1.0 Content-Type: Text/Plain; charset="iso-8859-15" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200905291242.27869.paul@codesourcery.com> List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org, Mark McLoughlin Cc: Jan Kiszka > > +extern char tftp_prefix[PATH_MAX]; > > +extern char bootp_filename[PATH_MAX]; > > This wouldn't build for me without including limits.h here It still won't work. You can't assume PATH_MAX is defined at all. Paul