Relevant BUGIDs: 436432

Purpose of commit: cleanup

Commit summary:
---------------
nix unneeded #include line from pam_tally.c.  Keep things as minimalistic as
possible until we /know/ it's needed for something.
This commit is contained in:
Steve Langasek 2001-06-27 18:53:30 +00:00
parent 00d6f3fb77
commit e5d527e8df
2 changed files with 3 additions and 1 deletions

View File

@ -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

View File

@ -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>