diff options
author | 2001-08-16 18:34:40 +0000 | |
---|---|---|
committer | 2001-08-16 18:34:40 +0000 | |
commit | 79822b598fdc60b72969d4362ce00ea20bd39e5d (patch) | |
tree | c3613cb9f2e4ae3f26b3e759c4befe14ca9bef3d /lib/libutil/check_expire.c | |
parent | extra arg to pw_mkdb (diff) | |
download | wireguard-openbsd-79822b598fdc60b72969d4362ce00ea20bd39e5d.tar.xz wireguard-openbsd-79822b598fdc60b72969d4362ce00ea20bd39e5d.zip |
consistently use #include "util.h" not <util.h> since util.h lives in this dir.
Diffstat (limited to 'lib/libutil/check_expire.c')
-rw-r--r-- | lib/libutil/check_expire.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libutil/check_expire.c b/lib/libutil/check_expire.c index dbc997548bf..5ff06063042 100644 --- a/lib/libutil/check_expire.c +++ b/lib/libutil/check_expire.c @@ -1,4 +1,4 @@ -/* $OpenBSD: check_expire.c,v 1.1 2000/11/26 01:27:19 millert Exp $ */ +/* $OpenBSD: check_expire.c,v 1.2 2001/08/16 18:34:40 millert Exp $ */ /* * Copyright (c) 1997 Berkeley Software Design, Inc. All rights reserved. @@ -46,11 +46,11 @@ #include <syslog.h> #include <time.h> #include <tzfile.h> -#include <util.h> - #include <login_cap.h> #include <bsd_auth.h> +#include "util.h" + static char *pwd_update __P((struct passwd *)); int |