From owner-svn-src-head@FreeBSD.ORG Thu May 28 15:02:44 2009 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BBD2510656A6; Thu, 28 May 2009 15:02:44 +0000 (UTC) (envelope-from zml@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id A9DED8FC22; Thu, 28 May 2009 15:02:44 +0000 (UTC) (envelope-from zml@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n4SF2iWC041136; Thu, 28 May 2009 15:02:44 GMT (envelope-from zml@svn.freebsd.org) Received: (from zml@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n4SF2i0t041135; Thu, 28 May 2009 15:02:44 GMT (envelope-from zml@svn.freebsd.org) Message-Id: <200905281502.n4SF2i0t041135@svn.freebsd.org> From: Zachary Loafman Date: Thu, 28 May 2009 15:02:44 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r192977 - head/lib/libc/rpc X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 May 2009 15:02:45 -0000 Author: zml Date: Thu May 28 15:02:44 2009 New Revision: 192977 URL: http://svn.freebsd.org/changeset/base/192977 Log: Match type for socket option (in practice, unnecessary, but stylistically it's a little nicer). Suggested by: jilles Approved by: dfr (mentor) Modified: head/lib/libc/rpc/svc_generic.c Modified: head/lib/libc/rpc/svc_generic.c ============================================================================== --- head/lib/libc/rpc/svc_generic.c Thu May 28 15:02:21 2009 (r192976) +++ head/lib/libc/rpc/svc_generic.c Thu May 28 15:02:44 2009 (r192977) @@ -199,7 +199,7 @@ svc_tli_create(fd, nconf, bindaddr, send struct __rpc_sockinfo si; struct sockaddr_storage ss; socklen_t slen; - static const uint32_t true_value = 1; + static const int true_value = 1; if (fd == RPC_ANYFD) { if (nconf == NULL) {