svn commit: r215680 - head/lib/libpam/modules/pam_unix

Dag-Erling Smorgrav des at FreeBSD.org
Mon Nov 22 14:45:17 UTC 2010


Author: des
Date: Mon Nov 22 14:45:16 2010
New Revision: 215680
URL: http://svn.freebsd.org/changeset/base/215680

Log:
  Add <time.h> for ctime(), which we accidentally picked up through
  <sys/time.h>.
  
  Submitted by:	Garrett Cooper <yanegomi at gmail.com>
  MFC after:	3 days

Modified:
  head/lib/libpam/modules/pam_unix/pam_unix.c

Modified: head/lib/libpam/modules/pam_unix/pam_unix.c
==============================================================================
--- head/lib/libpam/modules/pam_unix/pam_unix.c	Mon Nov 22 14:42:13 2010	(r215679)
+++ head/lib/libpam/modules/pam_unix/pam_unix.c	Mon Nov 22 14:45:16 2010	(r215680)
@@ -50,6 +50,7 @@ __FBSDID("$FreeBSD$");
 #include <string.h>
 #include <stdio.h>
 #include <syslog.h>
+#include <time.h>
 #include <unistd.h>
 
 #include <libutil.h>


More information about the svn-src-head mailing list