From owner-freebsd-current@FreeBSD.ORG Sat May 29 06:05:58 2004 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C201F16A4CE; Sat, 29 May 2004 06:05:58 -0700 (PDT) Received: from lerami.lerctr.org (lerami.lerctr.org [192.147.25.11]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6B1BA43D41; Sat, 29 May 2004 06:05:58 -0700 (PDT) (envelope-from ler@lerctr.org) Received: from lerlaptop.lerctr.org ([192.147.25.14]) by lerami.lerctr.org with asmtp (Exim 4.34) id 1BU3X5-0005Gu-D2; Sat, 29 May 2004 08:05:52 -0500 Date: Sat, 29 May 2004 08:05:47 -0500 From: Larry Rosenman To: freebsd-current@freebsd.org, wpaul@freebsd.org Message-ID: <1C6372C43486E980B13F0E01@lerlaptop.lerctr.org> X-Mailer: Mulberry/3.1.5 (Linux/x86) X-PGP-Info: All other keys are old/dead. X-PGP-Key: 0x3c49bdd6 X-PGP-Fingerprint: D0D1 3C11 F42F 6B29 FA67 6BF3 AD13 4685 3C49 BDD6 MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="==========79422A1F1A15094E4043==========" Subject: Kernel Compile issue X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 May 2004 13:05:58 -0000 --==========79422A1F1A15094E4043========== Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: quoted-printable Content-Disposition: inline I tried to compile a kernel from today's sources, and got a message about a function definition not being a prototype in wpaul@'s subr_ndis.c commit. I made the following patch, which fixed it for me. lerlaptop# diff -u subr_ndis.c.old subr_ndis.c --- subr_ndis.c.old Sat May 29 01:41:16 2004 +++ subr_ndis.c Sat May 29 06:48:27 2004 @@ -556,10 +556,7 @@ } static int -my_strcasecmp(s1, s2, len) - const char *s1; - const char *s2; - int len; +my_strcasecmp(const char *s1, const char *s2, int len) { int i; lerlaptop# Can someone commit? Thanks! LER --=20 Larry Rosenman http://www.lerctr.org/~ler Phone: +1 972-414-9812 E-Mail: ler@lerctr.org US Mail: 1905 Steamboat Springs Drive, Garland, TX 75044-6749 --==========79422A1F1A15094E4043========== Content-Type: application/pgp-signature Content-Transfer-Encoding: 7bit -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFAuIqurRNGhTxJvdYRAio9AJ9yT61bHb33adJbc0icPxNZxNB/YgCeILnn 8y+fT9KBptZYH0aDF05epZs= =5tyV -----END PGP SIGNATURE----- --==========79422A1F1A15094E4043==========--