summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG3
-rw-r--r--modules/pam_tally/pam_tally.c1
2 files changed, 3 insertions, 1 deletions
diff --git a/CHANGELOG b/CHANGELOG
index 6be2f928..9e1bd0b9 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -49,6 +49,9 @@ bug report - outstanding bugs are listed here:
0.76: please submit patches for this section with actual code/doc
patches!
+* pam_tally: remove #include of stdlib.h, which isn't needed by anything
+ found in this module. Can be readded if we find a real need for it at
+ a later date. (Bug 436432 - vorlon)
* pam_tally: added an #include (was it really needed?) and made the
pam_tally app install (with more pretty printing and a corrected
Makefile dependency) motivated by a (red hat diff) courtesy of Harald
diff --git a/modules/pam_tally/pam_tally.c b/modules/pam_tally/pam_tally.c
index b5bbaba3..651a758b 100644
--- a/modules/pam_tally/pam_tally.c
+++ b/modules/pam_tally/pam_tally.c
@@ -16,7 +16,6 @@
#include <stdio.h>
#include <string.h>
#include <unistd.h>
-#include <stdlib.h>
#include <stdarg.h>
#include <syslog.h>
#include <pwd.h>