Ignore:
Timestamp:
Nov 27, 2012, 4:43:17 PM (13 years ago)
Author:
Silvan Scherrer
Message:

Samba Server: updated trunk to 3.6.0

Location:
trunk/server
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/server

  • trunk/server/nsswitch/pam_winbind.h

    r414 r745  
     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
    144/* pam_winbind header file
    245   (Solaris needs some macros from Linux for common PAM code)
     
    447   Shirish Kalele 2000
    548*/
     49
     50#ifndef _NSSWITCH_PAM_WINBIND_H_
     51#define _NSSWITCH_PAM_WINBIND_H_
    652
    753#include "../lib/replace/replace.h"
     
    1056#include <talloc.h>
    1157#include "libwbclient/wbclient.h"
    12 #include "localedir.h"
    1358
    1459#define MODULE_NAME "pam_winbind"
     
    177222#define TALLOC_ZERO_P(ctx, type) (type *)_talloc_zero(ctx, sizeof(type), #type)
    178223#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.