Changeset 740 for vendor/current/nsswitch/pam_winbind.h
- Timestamp:
- Nov 14, 2012, 12:59:34 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
vendor/current/nsswitch/pam_winbind.h
r414 r740 1 /* 2 * Copyright (c) Andrew Tridgell <tridge@samba.org> 2000 3 * Copyright (c) Tim Potter <tpot@samba.org> 2000 4 * Copyright (c) Andrew Bartlettt <abartlet@samba.org> 2002 5 * Copyright (c) Guenther Deschner <gd@samba.org> 2005-2008 6 * Copyright (c) Jan Rêkorajski 1999. 7 * Copyright (c) Andrew G. Morgan 1996-8. 8 * Copyright (c) Alex O. Yuriev, 1996. 9 * Copyright (c) Cristian Gafton 1996. 10 * Copyright (C) Elliot Lee <sopwith@redhat.com> 1996, Red Hat Software. 11 * 12 * Redistribution and use in source and binary forms, with or without 13 * modification, are permitted provided that the following conditions 14 * are met: 15 * 1. Redistributions of source code must retain the above copyright 16 * notice, and the entire permission notice in its entirety, 17 * including the disclaimer of warranties. 18 * 2. Redistributions in binary form must reproduce the above copyright 19 * notice, this list of conditions and the following disclaimer in the 20 * documentation and/or other materials provided with the distribution. 21 * 3. The name of the author may not be used to endorse or promote 22 * products derived from this software without specific prior 23 * written permission. 24 * 25 * ALTERNATIVELY, this product may be distributed under the terms of 26 * the GNU Public License, in which case the provisions of the GPL are 27 * required INSTEAD OF the above restrictions. (This clause is 28 * necessary due to a potential bad interaction between the GPL and 29 * the restrictions contained in a BSD-style copyright.) 30 * 31 * THIS SOFTWARE IS PROVIDED `AS IS'' AND ANY EXPRESS OR IMPLIED 32 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES 33 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE 34 * DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, 35 * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES 36 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR 37 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 38 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, 39 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 40 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED 41 * OF THE POSSIBILITY OF SUCH DAMAGE. 42 */ 43 1 44 /* pam_winbind header file 2 45 (Solaris needs some macros from Linux for common PAM code) … … 4 47 Shirish Kalele 2000 5 48 */ 49 50 #ifndef _NSSWITCH_PAM_WINBIND_H_ 51 #define _NSSWITCH_PAM_WINBIND_H_ 6 52 7 53 #include "../lib/replace/replace.h" … … 10 56 #include <talloc.h> 11 57 #include "libwbclient/wbclient.h" 12 #include "localedir.h"13 58 14 59 #define MODULE_NAME "pam_winbind" … … 177 222 #define TALLOC_ZERO_P(ctx, type) (type *)_talloc_zero(ctx, sizeof(type), #type) 178 223 #define TALLOC_P(ctx, type) (type *)talloc_named_const(ctx, sizeof(type), #type) 224 225 #endif /* _NSSWITCH_PAM_WINBIND_H_ */
Note:
See TracChangeset
for help on using the changeset viewer.