Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 18 Dec 2011 00:44:59 +0000 (UTC)
From:      Dimitry Andric <dim@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r228679 - head/usr.sbin/rpc.ypupdated
Message-ID:  <201112180044.pBI0ixKQ084416@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: dim
Date: Sun Dec 18 00:44:59 2011
New Revision: 228679
URL: http://svn.freebsd.org/changeset/base/228679

Log:
  In usr.sbin/rpc.ypupdated/yp_dbupdate.c, include stdint.h, so intmax_t
  is known, otherwise it won't build.
  
  Pointy hat to:	dim
  MFC after:	1 week

Modified:
  head/usr.sbin/rpc.ypupdated/yp_dbupdate.c

Modified: head/usr.sbin/rpc.ypupdated/yp_dbupdate.c
==============================================================================
--- head/usr.sbin/rpc.ypupdated/yp_dbupdate.c	Sun Dec 18 00:40:30 2011	(r228678)
+++ head/usr.sbin/rpc.ypupdated/yp_dbupdate.c	Sun Dec 18 00:44:59 2011	(r228679)
@@ -35,6 +35,7 @@ __FBSDID("$FreeBSD$");
 
 #include <sys/fcntl.h>
 
+#include <stdint.h>
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201112180044.pBI0ixKQ084416>