login_ok.c (0edf29640bbd2b6b0c6afc6dc7062101c11b793c) | login_ok.c (8b1ef8d4645b65a6acfa34d3c1f460805e737a98) |
---|---|
1/*- 2 * Copyright (c) 1996 by 3 * David Nugent <davidn@blaze.net.au> 4 * All rights reserved. 5 * 6 * Redistribution and use in source and binary forms, with or without 7 * modification, is permitted provided that the following conditions 8 * are met: --- 6 unchanged lines hidden (view full) --- 15 * 3. This work was done expressly for inclusion into FreeBSD. Other use 16 * is permitted provided this notation is included. 17 * 4. Absolutely no warranty of function or purpose is made by the authors. 18 * 5. Modifications may be freely made to this file providing the above 19 * conditions are met. 20 * 21 * Support allow/deny lists in login class capabilities 22 * | 1/*- 2 * Copyright (c) 1996 by 3 * David Nugent <davidn@blaze.net.au> 4 * All rights reserved. 5 * 6 * Redistribution and use in source and binary forms, with or without 7 * modification, is permitted provided that the following conditions 8 * are met: --- 6 unchanged lines hidden (view full) --- 15 * 3. This work was done expressly for inclusion into FreeBSD. Other use 16 * is permitted provided this notation is included. 17 * 4. Absolutely no warranty of function or purpose is made by the authors. 18 * 5. Modifications may be freely made to this file providing the above 19 * conditions are met. 20 * 21 * Support allow/deny lists in login class capabilities 22 * |
23 * $Id: login_ok.c,v 1.4 1997/05/10 18:55:38 davidn Exp $ | 23 * $Id: login_ok.c,v 1.5 1997/06/16 23:38:01 davidn Exp $ |
24 */ 25 | 24 */ 25 |
26#include <stdio.h> | |
27#include <stdlib.h> 28#include <string.h> 29#include <errno.h> 30#include <unistd.h> 31#include <ttyent.h> 32#include <fnmatch.h> 33 34#include <sys/types.h> --- 217 unchanged lines hidden --- | 26#include <stdlib.h> 27#include <string.h> 28#include <errno.h> 29#include <unistd.h> 30#include <ttyent.h> 31#include <fnmatch.h> 32 33#include <sys/types.h> --- 217 unchanged lines hidden --- |