From b3cbcd0eda4fdb993acc63c8cb6923feea067a7d Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Mon, 30 May 2011 23:38:13 +0200 Subject: s3:passdb/proto.h: add GPL/copyright comment header --- source3/passdb/proto.h | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) (limited to 'source3/passdb/proto.h') diff --git a/source3/passdb/proto.h b/source3/passdb/proto.h index a64985c7091..17882a99d8b 100644 --- a/source3/passdb/proto.h +++ b/source3/passdb/proto.h @@ -1,3 +1,39 @@ +/* + * Unix SMB/CIFS implementation. + * passdb - password and authentication handling + * + * Copyright (C) Andrew Tridgell 1992-1998 + * Copyright (C) Jeremy Allison 1995-2009 + * Copyright (C) Luke Kenneth Casson Leighton 1996-1998 + * Copyright (C) Jean François Micouleau 1998-2001 + * Copyright (C) Gerald (Jerry) Carter 2000-2006 + * Copyright (C) Simo Sorce 2000-2003,2006 + * Copyright (C) Andrew Bartlett 2001-2002 + * Copyright (C) Shahms King 2001 + * Copyright (C) Jelmer Vernooij 2002 + * Copyright (C) Rafal Szczesniak 2002 + * Copyright (C) Stefan (metze) Metzmacher 2002-2003 + * Copyright (C) Guenther Deschner 2004-2005 + * Copyright (C) Jim McDonough (jmcd@us.ibm.com) 2004-2005 + * Copyright (C) Vince Brimhall 2004-2005 + * Copyright (C) Volker Lendecke 2006 + * Copyright (C) Michael Adam 2007 + * Copyright (C) Dan Sledz 2009 + * + * 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 . + */ + /* The following definitions come from passdb/account_pol.c */ -- cgit From 7d40c88695173e93606546e895731f66b87381d2 Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Mon, 30 May 2011 23:42:02 +0200 Subject: s3:passdb/proto.h: add _PASSDB_PROTO_H_ guard --- source3/passdb/proto.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'source3/passdb/proto.h') diff --git a/source3/passdb/proto.h b/source3/passdb/proto.h index 17882a99d8b..8b95b729597 100644 --- a/source3/passdb/proto.h +++ b/source3/passdb/proto.h @@ -34,6 +34,8 @@ * along with this program; if not, see . */ +#ifndef _PASSDB_PROTO_H_ +#define _PASSDB_PROTO_H_ /* The following definitions come from passdb/account_pol.c */ @@ -336,3 +338,5 @@ NTSTATUS pdb_tdbsam_init(void); NTSTATUS create_builtin_users(const struct dom_sid *sid); NTSTATUS create_builtin_administrators(const struct dom_sid *sid); + +#endif /* _PASSDB_PROTO_H_ */ -- cgit