diff options
author | Günther Deschner <gd@samba.org> | 2011-06-10 15:04:59 +0200 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2011-06-10 15:12:15 +0200 |
commit | 5672d83b23e89f716300940126bef0a738aa3599 (patch) | |
tree | c94052011651875f6d69e0ecaae208ccacce17d6 | |
parent | 387ddc2c295e92363c83dcd29353cdd4c56984ab (diff) | |
download | samba-5672d83b23e89f716300940126bef0a738aa3599.tar.gz samba-5672d83b23e89f716300940126bef0a738aa3599.tar.xz samba-5672d83b23e89f716300940126bef0a738aa3599.zip |
source3/lib/privileges.h: fix licence/copyright
Guenther
-rw-r--r-- | source3/lib/privileges.h | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/source3/lib/privileges.h b/source3/lib/privileges.h index 13bc3eb0830..ca2a7c98331 100644 --- a/source3/lib/privileges.h +++ b/source3/lib/privileges.h @@ -1,3 +1,28 @@ +/* + Unix SMB/CIFS implementation. + Privileges handling functions + Copyright (C) Jean François Micouleau 1998-2001 + Copyright (C) Simo Sorce 2002-2003 + Copyright (C) Gerald (Jerry) Carter 2005 + Copyright (C) Michael Adam 2007 + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 3 of the License, or + (at your option) any later version. + + This program 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 General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see <http://www.gnu.org/licenses/>. +*/ + +#ifndef _LIB_PRIVILEGES_H_ +#define _LIB_PRIVILEGES_H_ + #include "../libcli/security/privileges.h" /* The following definitions come from lib/privileges.c */ @@ -16,3 +41,5 @@ NTSTATUS privilege_create_account(const struct dom_sid *sid ); NTSTATUS privilege_delete_account(const struct dom_sid *sid); bool is_privileged_sid( const struct dom_sid *sid ); bool grant_all_privileges( const struct dom_sid *sid ); + +#endif /* _LIB_PRIVILEGES_H_ */ |