diff options
author | Jeff Layton <jlayton@redhat.com> | 2010-02-08 09:29:41 -0500 |
---|---|---|
committer | Jeff Layton <jlayton@redhat.com> | 2010-02-08 09:29:41 -0500 |
commit | 34577d4c03101df6b62e9652f364a5d1974919a2 (patch) | |
tree | 2c1efb87108eede2fda1c4e86fae9991fa6ab860 | |
parent | 9d4affc34c9ef535574ebeab8f530a41b359ff8e (diff) | |
download | cifs-utils-34577d4c03101df6b62e9652f364a5d1974919a2.tar.gz cifs-utils-34577d4c03101df6b62e9652f364a5d1974919a2.tar.bz2 cifs-utils-34577d4c03101df6b62e9652f364a5d1974919a2.zip |
cifs.upcall: add proper licenses to files
Signed-off-by: Jeff Layton <jlayton@redhat.com>
-rw-r--r-- | spnego.c | 20 | ||||
-rw-r--r-- | spnego.h | 21 | ||||
-rw-r--r-- | util.c | 24 | ||||
-rw-r--r-- | util.h | 24 |
4 files changed, 89 insertions, 0 deletions
@@ -1,3 +1,23 @@ +/* + Unix SMB/CIFS implementation. + simple kerberos5/SPNEGO routines + Copyright (C) Andrew Tridgell 2001 + Copyright (C) Jim McDonough <jmcd@us.ibm.com> 2002 + Copyright (C) Luke Howard 2003 + + 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/>. +*/ #include <talloc.h> #include <stdint.h> @@ -1,3 +1,24 @@ +/* + Unix SMB/CIFS implementation. + simple kerberos5/SPNEGO routines + Copyright (C) Andrew Tridgell 2001 + Copyright (C) Jim McDonough <jmcd@us.ibm.com> 2002 + Copyright (C) Luke Howard 2003 + + 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 _SPNEGO_H #define _SPNEGO_H @@ -1,3 +1,27 @@ +/* + Unix SMB/CIFS implementation. + replacement routines for broken systems + Copyright (C) Andrew Tridgell 1992-1998 + Copyright (C) Jelmer Vernooij 2005-2008 + + ** NOTE! The following LGPL license applies to the replace + ** library. This does NOT imply that all of Samba is released + ** under the LGPL + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 3 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 + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with this library; if not, see <http://www.gnu.org/licenses/>. +*/ + #include <sys/types.h> #include <string.h> @@ -1,3 +1,27 @@ +/* + Unix SMB/CIFS implementation. + replacement routines for broken systems + Copyright (C) Andrew Tridgell 1992-1998 + Copyright (C) Jelmer Vernooij 2005-2008 + + ** NOTE! The following LGPL license applies to the replace + ** library. This does NOT imply that all of Samba is released + ** under the LGPL + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 3 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 + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with this library; if not, see <http://www.gnu.org/licenses/>. +*/ + #ifndef _LIBUTIL_H #define _LIBUTIL_H |