Deleted Added
full compact
login_access.c (22230) login_access.c (29922)
1 /*
2 * This module implements a simple but effective form of login access
3 * control based on login names and on host (or domain) names, internet
4 * addresses (or network numbers), or on terminal line names in case of
5 * non-networked logins. Diagnostics are reported through syslog(3).
6 *
7 * Author: Wietse Venema, Eindhoven University of Technology, The Netherlands.
8 */
9
10#ifdef LOGIN_ACCESS
11#ifndef lint
1 /*
2 * This module implements a simple but effective form of login access
3 * control based on login names and on host (or domain) names, internet
4 * addresses (or network numbers), or on terminal line names in case of
5 * non-networked logins. Diagnostics are reported through syslog(3).
6 *
7 * Author: Wietse Venema, Eindhoven University of Technology, The Netherlands.
8 */
9
10#ifdef LOGIN_ACCESS
11#ifndef lint
12static char sccsid[] = "%Z% %M% %I% %E% %U%";
12static const char sccsid[] = "%Z% %M% %I% %E% %U%";
13#endif
14
15#include <stdio.h>
16#include <syslog.h>
17#include <ctype.h>
18#include <sys/types.h>
19#include <grp.h>
20#include <errno.h>

--- 219 unchanged lines hidden ---
13#endif
14
15#include <stdio.h>
16#include <syslog.h>
17#include <ctype.h>
18#include <sys/types.h>
19#include <grp.h>
20#include <errno.h>

--- 219 unchanged lines hidden ---