From owner-freebsd-net@FreeBSD.ORG Sat Dec 18 10:48:43 2010 Return-Path: Delivered-To: freebsd-net@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6453710656A7; Sat, 18 Dec 2010 10:48:43 +0000 (UTC) (envelope-from to.my.trociny@gmail.com) Received: from mail-bw0-f48.google.com (mail-bw0-f48.google.com [209.85.214.48]) by mx1.freebsd.org (Postfix) with ESMTP id BB79D8FC14; Sat, 18 Dec 2010 10:48:42 +0000 (UTC) Received: by bwz8 with SMTP id 8so1377271bwz.7 for ; Sat, 18 Dec 2010 02:48:41 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:from:to:cc:subject:date :message-id:user-agent:mime-version:content-type; bh=IYxigYh9naGSeAFYpidsH5y/EcAwugWLUOrbA/FKxD4=; b=KyZPppW2bpDqcEuqnUydsKeySmqn834pVE4I0BKBp3gPf8XDraGJEFuzfyjPXCan/B ZX8tP8e4F++GFNHTg/W7siyXBnMMIseVbQ0vr7/9A+BgHKARr3lYN2dxQEqQnRo4MuxS IMoeTufDJEkcquzLFCIEMiwn3ill/Ufdhyj3I= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=from:to:cc:subject:date:message-id:user-agent:mime-version :content-type; b=PahPHp8WtNOXacNb7UVt7/474JjALmDYY5h4EbEqnbNFUq19Ahl2N+NCbZ8SlEhcac zCO65CHAmZMmjx38lQKwroROnd9uuQJTIjQOkNw+giAen2Z/sE4YZ4gFxGr+WqqhxrAI bRsCofqiFDBbTc4v/6/IRVC1iuH2UjW8kQDRo= Received: by 10.204.99.207 with SMTP id v15mr1553805bkn.206.1292669321696; Sat, 18 Dec 2010 02:48:41 -0800 (PST) Received: from localhost ([95.69.174.185]) by mx.google.com with ESMTPS id d27sm2483435bkw.14.2010.12.18.02.48.40 (version=TLSv1/SSLv3 cipher=RC4-MD5); Sat, 18 Dec 2010 02:48:40 -0800 (PST) From: Mikolaj Golub To: freebsd-net@FreeBSD.org Date: Sat, 18 Dec 2010 12:48:38 +0200 Message-ID: <86wrn7gxvd.fsf@kopusha.home.net> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.2 (berkeley-unix) MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Cc: Shteryana Shopova Subject: bsnmp/snmpmod.h: #include is missed X-BeenThere: freebsd-net@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Networking and TCP/IP with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 18 Dec 2010 10:48:43 -0000 --=-=-= Hi, bsnmp/snmpmod.h uses SLIST but does not includes . This breaks net-mgmt/bsnmp-ucd port (ports/153153). Could somebody look at the attached patch? -- Mikolaj Golub --=-=-= Content-Type: text/x-patch Content-Disposition: inline; filename=snmpmod.h.patch Index: contrib/bsnmp/snmpd/snmpmod.h =================================================================== --- contrib/bsnmp/snmpd/snmpmod.h (revision 216439) +++ contrib/bsnmp/snmpd/snmpmod.h (working copy) @@ -33,6 +33,7 @@ #ifndef snmpmod_h_ #define snmpmod_h_ +#include #include #include #include --=-=-=--