summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew G. Morgan <morgan@kernel.org>2001-02-22 04:49:45 +0000
committerAndrew G. Morgan <morgan@kernel.org>2001-02-22 04:49:45 +0000
commit76c1d898c3f7999c67d06d913d40b4d5adb42c02 (patch)
tree8c44330b8a24e3976bd3a1cc60adfd893e6e53fd
parentfe18f187e6553f814d45f714b35e19011b1014b4 (diff)
Relevant BUGIDs: 133542
Purpose of commit: support for glibc-2.2.2 Commit summary: --------------- This module needed another #include to support a recent spin of the glibc headers.
-rw-r--r--CHANGELOG1
-rw-r--r--modules/pam_issue/pam_issue.c1
2 files changed, 2 insertions, 0 deletions
diff --git a/CHANGELOG b/CHANGELOG
index 0df13a01..0acb2568 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -50,6 +50,7 @@ libpam. Prior versions were buggy - see bugfix for Bug 129775.
** WARNING **
+* fix for glibc-2.2.2 compilation of pam_issue (Bug 133542 - agmorgan)
* fix pam_userdb to make and link both .o files it needs - converse()
wasn't being linked! (Bug 132880 - agmorgan)
* added some sys-admin documentation for the pam_tally module (Bug
diff --git a/modules/pam_issue/pam_issue.c b/modules/pam_issue/pam_issue.c
index 9fbf2551..2cb54bec 100644
--- a/modules/pam_issue/pam_issue.c
+++ b/modules/pam_issue/pam_issue.c
@@ -22,6 +22,7 @@
#include <stdlib.h>
#include <sys/types.h>
#include <sys/stat.h>
+#include <time.h>
#include <fcntl.h>
#include <string.h>
#include <unistd.h>