From b05fc77a36028619e670205f3860e64f10ed10a8 Mon Sep 17 00:00:00 2001 From: Alex Richardson Date: Tue, 11 Aug 2020 16:46:38 +0000 Subject: [PATCH] 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. --- usr.sbin/pwd_mkdb/bootstrap/pwd.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr.sbin/pwd_mkdb/bootstrap/pwd.h b/usr.sbin/pwd_mkdb/bootstrap/pwd.h index a3b595881e21..bc196e2c0fd0 100644 --- a/usr.sbin/pwd_mkdb/bootstrap/pwd.h +++ b/usr.sbin/pwd_mkdb/bootstrap/pwd.h @@ -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