diff options
author | Rene Ladan <rene@FreeBSD.org> | 2020-05-12 19:26:45 +0000 |
---|---|---|
committer | Rene Ladan <rene@FreeBSD.org> | 2020-05-12 19:26:45 +0000 |
commit | 69044e296e5c212c85fb1d5f9c0670e5fc030019 (patch) | |
tree | f8aafb2052c6c0d4b23240dfaf3583a1206f3c34 /security/pwauth/files/patch-checkfaillog.c | |
parent | Update to 32.0.0.371. (diff) |
security/pwauth: fix fetch and undeprecate
PR: 243650 [1]
PR: 244289 [2]
Submitted by: Benjamin Lutz [1]
Submitted by: ian [2]
Approved by: maintainer
MFH: 2020Q2
Diffstat (limited to 'security/pwauth/files/patch-checkfaillog.c')
-rw-r--r-- | security/pwauth/files/patch-checkfaillog.c | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/security/pwauth/files/patch-checkfaillog.c b/security/pwauth/files/patch-checkfaillog.c index 320a51faf92a..a04fd035ebf6 100644 --- a/security/pwauth/files/patch-checkfaillog.c +++ b/security/pwauth/files/patch-checkfaillog.c @@ -1,10 +1,13 @@ ---- checkfaillog.c.orig 2012-02-11 13:22:09.000000000 +0200 -+++ checkfaillog.c 2012-02-11 13:22:42.000000000 +0200 -@@ -32,6 +32,7 @@ +--- checkfaillog.c.orig 2020-04-11 16:27:51 UTC ++++ checkfaillog.c +@@ -32,8 +32,9 @@ */ #include <stdio.h> +#include <stdlib.h> #include <sys/types.h> - #include <utmp.h> +-#include <utmp.h> ++#include <utmpx.h> #include <pwd.h> + + #include "config.h" |