[svn-upgrade] Integrating new upstream version, shadow (4.0.8)

This commit is contained in:
nekral-guest
2007-10-07 11:46:07 +00:00
parent 0ee095abd8
commit 8e167d28af
414 changed files with 21641 additions and 27358 deletions

View File

@@ -1,4 +1,4 @@
/* $Id: failure.h,v 1.2 2000/08/26 18:27:17 marekm Exp $ */
/* $Id: failure.h,v 1.3 2005/03/31 05:14:50 kloczek Exp $ */
#ifndef _FAILURE_H_
#define _FAILURE_H_
@@ -12,7 +12,7 @@
* failure() creates a new (struct faillog) entry or updates an
* existing one with the current failed login information.
*/
extern void failure(uid_t, const char *, struct faillog *);
extern void failure (uid_t, const char *, struct faillog *);
/*
* failcheck - check for failures > allowable
@@ -22,7 +22,7 @@ extern void failure(uid_t, const char *, struct faillog *);
* returns FALSE to indicate that the login should be denied even though
* the password is valid.
*/
extern int failcheck(uid_t, struct faillog *, int);
extern int failcheck (uid_t, struct faillog *, int);
/*
* failprint - print line of failure information
@@ -30,7 +30,7 @@ extern int failcheck(uid_t, struct faillog *, int);
* failprint takes a (struct faillog) entry and formats it into a
* message which is displayed at login time.
*/
extern void failprint(const struct faillog *);
extern void failprint (const struct faillog *);
/*
* failtmp - update the cummulative failure log
@@ -38,7 +38,6 @@ extern void failprint(const struct faillog *);
* failtmp updates the (struct utmp) formatted failure log which
* maintains a record of all login failures.
*/
extern void failtmp(const struct utmp *);
extern void failtmp (const struct utmp *);
#endif