diff options
Diffstat (limited to 'nss_common.h')
-rw-r--r-- | nss_common.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/nss_common.h b/nss_common.h index 373a442..c4a7307 100644 --- a/nss_common.h +++ b/nss_common.h @@ -1,17 +1,17 @@ /* Donated by HP to enable Winbindd to build on HPUX 11.x. Copyright (C) Jeremy Allison 2002. - + This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. - + This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. - + You should have received a copy of the GNU Library General Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, @@ -20,14 +20,14 @@ #ifndef _NSS_COMMON_H #define _NSS_COMMON_H - + #ifdef HAVE_SYNCH_H #include <synch.h> #endif #ifdef HAVE_PTHREAD_H #include <pthread.h> #endif - + #error "not used" @@ -37,12 +37,12 @@ typedef enum { NSS_UNAVAIL, NSS_TRYAGAIN } nss_status_t; - + struct nss_backend; typedef nss_status_t (*nss_backend_op_t)(struct nss_backend *, void *args); - + struct nss_backend { nss_backend_op_t *ops; int n_ops; |