svn commit: r364121 - head/usr.sbin/pwd_mkdb/bootstrap

Alex Richardson arichardson at FreeBSD.org
Tue Aug 11 16:46:39 UTC 2020


Author: arichardson
Date: Tue Aug 11 16:46:38 2020
New Revision: 364121
URL: https://svnweb.freebsd.org/changeset/base/364121

Log:
  Fix bootstrapping of pwd_mkdb after r364049
  
  I moved the bootstrap pwd.h to a subdirectory in r364049 but forgot to
  adjust the #include path.

Modified:
  head/usr.sbin/pwd_mkdb/bootstrap/pwd.h

Modified: head/usr.sbin/pwd_mkdb/bootstrap/pwd.h
==============================================================================
--- head/usr.sbin/pwd_mkdb/bootstrap/pwd.h	Tue Aug 11 16:46:33 2020	(r364120)
+++ head/usr.sbin/pwd_mkdb/bootstrap/pwd.h	Tue Aug 11 16:46:38 2020	(r364121)
@@ -60,7 +60,7 @@ typedef	uint64_t	_bootstrap_time_t;
 #define	uid_t	_bootstrap_uid_t
 #define	time_t	_bootstrap_time_t
 #define	passwd	_bootstrap_passwd
-#include "../../include/pwd.h"
+#include "../../../include/pwd.h"
 #undef gid_t
 #undef uid_t
 #undef time_t


More information about the svn-src-all mailing list