From owner-cvs-all Tue May 30 11:33: 2 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 7087437B5FB; Tue, 30 May 2000 11:32:59 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Received: (from jhb@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA10287; Tue, 30 May 2000 11:32:59 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Message-Id: <200005301832.LAA10287@freefall.freebsd.org> From: John Baldwin Date: Tue, 30 May 2000 11:32:59 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/inetd builtins.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jhb 2000/05/30 11:32:59 PDT Modified files: usr.sbin/inetd builtins.c Log: Fix a 64-bit'ism in the handling of the ident service. sysctlbyname() takes a size_t as its 3rd argument, which is 64-bits on the alpha. The 'len' variable used was a int, which is only 32-bits. Use size_t as the type for 'len' to work-around this. Revision Changes Path 1.22 +3 -2 src/usr.sbin/inetd/builtins.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message