From 5a4bf7b3970df04b1a7f92173b2ade42cc19ecde Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Mon, 29 Mar 2004 23:09:54 +0000 Subject: add boilerplate licenses in source files git-svn-id: file:///home/lennart/svn/public/fusedav/trunk@8 e35a362c-bbd6-0310-a59f-a4efcb1729c4 --- src/filecache.c | 24 ++++++++++++++++++++++++ src/filecache.h | 20 ++++++++++++++++++++ src/fusedav.c | 24 ++++++++++++++++++++++++ src/fusedav.h | 20 ++++++++++++++++++++ src/openssl-thread.c | 24 ++++++++++++++++++++++++ src/openssl-thread.h | 20 ++++++++++++++++++++ src/session.c | 24 ++++++++++++++++++++++++ src/session.h | 20 ++++++++++++++++++++ src/statcache.c | 24 ++++++++++++++++++++++++ src/statcache.h | 20 ++++++++++++++++++++ 10 files changed, 220 insertions(+) diff --git a/src/filecache.c b/src/filecache.c index d4d3a26..985d575 100644 --- a/src/filecache.c +++ b/src/filecache.c @@ -1,3 +1,27 @@ +/* $Id$ */ + +/*** + This file is part of fusedav. + + fusedav 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 2 of the License, or + (at your option) any later version. + + fusedav 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 fusedav; if not, write to the Free Software Foundation, + Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +***/ + +#ifdef HAVE_CONFIG_H +#include +#endif + #define _XOPEN_SOURCE 500 #include diff --git a/src/filecache.h b/src/filecache.h index 90972b0..f4b50b4 100644 --- a/src/filecache.h +++ b/src/filecache.h @@ -1,6 +1,26 @@ #ifndef foofilecachehfoo #define foofilecachehfoo +/* $Id$ */ + +/*** + This file is part of fusedav. + + fusedav 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 2 of the License, or + (at your option) any later version. + + fusedav 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 fusedav; if not, write to the Free Software Foundation, + Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +***/ + #include void* file_cache_open(const char *path, int flags); diff --git a/src/fusedav.c b/src/fusedav.c index 355feae..92fceb1 100644 --- a/src/fusedav.c +++ b/src/fusedav.c @@ -1,3 +1,27 @@ +/* $Id$ */ + +/*** + This file is part of fusedav. + + fusedav 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 2 of the License, or + (at your option) any later version. + + fusedav 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 fusedav; if not, write to the Free Software Foundation, + Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +***/ + +#ifdef HAVE_CONFIG_H +#include +#endif + #include #include #include diff --git a/src/fusedav.h b/src/fusedav.h index f233066..35598ae 100644 --- a/src/fusedav.h +++ b/src/fusedav.h @@ -1,6 +1,26 @@ #ifndef foofusedevhfoo #define foofusedevhfoo +/* $Id$ */ + +/*** + This file is part of fusedav. + + fusedav 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 2 of the License, or + (at your option) any later version. + + fusedav 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 fusedav; if not, write to the Free Software Foundation, + Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +***/ + extern int debug; #endif diff --git a/src/openssl-thread.c b/src/openssl-thread.c index 8dd0506..c28ebfe 100644 --- a/src/openssl-thread.c +++ b/src/openssl-thread.c @@ -1,3 +1,27 @@ +/* $Id$ */ + +/*** + This file is part of fusedav. + + fusedav 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 2 of the License, or + (at your option) any later version. + + fusedav 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 fusedav; if not, write to the Free Software Foundation, + Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +***/ + +#ifdef HAVE_CONFIG_H +#include +#endif + #include #include diff --git a/src/openssl-thread.h b/src/openssl-thread.h index f311760..9ba91d0 100644 --- a/src/openssl-thread.h +++ b/src/openssl-thread.h @@ -1,6 +1,26 @@ #ifndef fooopensslhfoo #define fooopensslhfoo +/* $Id$ */ + +/*** + This file is part of fusedav. + + fusedav 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 2 of the License, or + (at your option) any later version. + + fusedav 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 fusedav; if not, write to the Free Software Foundation, + Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +***/ + void openssl_thread_setup(void); void openssl_thread_cleanup(void); diff --git a/src/session.c b/src/session.c index 4f1009b..75c37c8 100644 --- a/src/session.c +++ b/src/session.c @@ -1,3 +1,27 @@ +/* $Id$ */ + +/*** + This file is part of fusedav. + + fusedav 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 2 of the License, or + (at your option) any later version. + + fusedav 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 fusedav; if not, write to the Free Software Foundation, + Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +***/ + +#ifdef HAVE_CONFIG_H +#include +#endif + #include #include #include diff --git a/src/session.h b/src/session.h index 5ac0114..7a46782 100644 --- a/src/session.h +++ b/src/session.h @@ -1,6 +1,26 @@ #ifndef foosessionhfoo #define foosessionhfoo +/* $Id$ */ + +/*** + This file is part of fusedav. + + fusedav 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 2 of the License, or + (at your option) any later version. + + fusedav 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 fusedav; if not, write to the Free Software Foundation, + Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +***/ + #include ne_session *session_get(void); diff --git a/src/statcache.c b/src/statcache.c index 3622a73..f71c1a6 100644 --- a/src/statcache.c +++ b/src/statcache.c @@ -1,3 +1,27 @@ +/* $Id$ */ + +/*** + This file is part of fusedav. + + fusedav 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 2 of the License, or + (at your option) any later version. + + fusedav 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 fusedav; if not, write to the Free Software Foundation, + Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +***/ + +#ifdef HAVE_CONFIG_H +#include +#endif + #include #include #include diff --git a/src/statcache.h b/src/statcache.h index 5af9bd9..6e96ba4 100644 --- a/src/statcache.h +++ b/src/statcache.h @@ -1,6 +1,26 @@ #ifndef foostatcachehfoo #define foostatcachehfoo +/* $Id$ */ + +/*** + This file is part of fusedav. + + fusedav 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 2 of the License, or + (at your option) any later version. + + fusedav 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 fusedav; if not, write to the Free Software Foundation, + Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +***/ + #include int stat_cache_get(const char *fn, struct stat *st); -- cgit