|
/** |
|
* @brief Update the cumulative failure log |
|
* |
|
* @param[in] failent_user username |
|
* @param[in] tty tty |
|
* @param[in] host hostname |
|
* |
|
*/ |
|
extern void record_failure(const char *failent_user, |
|
const char *tty, |
|
const char *hostname); |
small discrepancy between documentation and code (name of parameter is hostname
and documentation, in \param
, says host
in implementation in
|
void record_failure(const char *failent_user, |
|
const char *tty, |
|
const char *hostname) |
it says again
hostname
).