Date: Tue, 11 Aug 2020 16:46:38 +0000 (UTC) From: Alex Richardson <arichardson@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r364121 - head/usr.sbin/pwd_mkdb/bootstrap Message-ID: <202008111646.07BGkc42013644@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202008111646.07BGkc42013644>