summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 1120116)
raw | patch | inline | side by side (parent: 1120116)
author | Lennart Poettering <lennart@poettering.net> | |
Mon, 29 Mar 2004 23:09:54 +0000 (23:09 +0000) | ||
committer | Lennart Poettering <lennart@poettering.net> | |
Mon, 29 Mar 2004 23:09:54 +0000 (23:09 +0000) |
src/filecache.c | patch | blob | history | |
src/filecache.h | patch | blob | history | |
src/fusedav.c | patch | blob | history | |
src/fusedav.h | patch | blob | history | |
src/openssl-thread.c | patch | blob | history | |
src/openssl-thread.h | patch | blob | history | |
src/session.c | patch | blob | history | |
src/session.h | patch | blob | history | |
src/statcache.c | patch | blob | history | |
src/statcache.h | patch | blob | history |
diff --git a/src/filecache.c b/src/filecache.c
index d4d3a264ba36482db548e787d075dbf6f83feab4..985d575ac1cbfc8867104c146ad94bce3e3c00b0 100644 (file)
--- a/src/filecache.c
+++ b/src/filecache.c
+/* $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 <config.h>
+#endif
+
#define _XOPEN_SOURCE 500
#include <errno.h>
diff --git a/src/filecache.h b/src/filecache.h
index 90972b05ee35e0d8ab6aab3fe2b3c18a1f79af8a..f4b50b4e7668e42c0115db6fe2b4e4b4ef022eec 100644 (file)
--- a/src/filecache.h
+++ b/src/filecache.h
#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 <sys/types.h>
void* file_cache_open(const char *path, int flags);
diff --git a/src/fusedav.c b/src/fusedav.c
index 355feae2e8e6f7606e7499ff97913949cf6c4baf..92fceb1487d96bf8ac23865ddaa4263d4459db82 100644 (file)
--- a/src/fusedav.c
+++ b/src/fusedav.c
+/* $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 <config.h>
+#endif
+
#include <signal.h>
#include <pthread.h>
#include <time.h>
diff --git a/src/fusedav.h b/src/fusedav.h
index f233066263e2f52f0360245fc4be8dc2a5ae6371..35598ae6e264fb88b0d2ef3cb0823ecfa3745f83 100644 (file)
--- a/src/fusedav.h
+++ b/src/fusedav.h
#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 8dd050658aa98098b01649f417edd587db285712..c28ebfecb2f20fc8b6203ea3c7ca70950c0fef57 100644 (file)
--- a/src/openssl-thread.c
+++ b/src/openssl-thread.c
+/* $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 <config.h>
+#endif
+
#include <pthread.h>
#include <openssl/crypto.h>
diff --git a/src/openssl-thread.h b/src/openssl-thread.h
index f3117609bb15e05b371d66b9f8ec4467a8b78a2f..9ba91d07deb4c416a43035e321fd203abc062bae 100644 (file)
--- a/src/openssl-thread.h
+++ b/src/openssl-thread.h
#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 4f1009b2e24c883fbc7cba4d67c09e0e2f550980..75c37c86e654c449b3db5e146c82e74ea5a2e46d 100644 (file)
--- a/src/session.c
+++ b/src/session.c
+/* $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 <config.h>
+#endif
+
#include <stdio.h>
#include <assert.h>
#include <pthread.h>
diff --git a/src/session.h b/src/session.h
index 5ac0114fc077842bc00c35113d5bf79fa447e22f..7a4678207a96e0574377b31f0222b3c43450689c 100644 (file)
--- a/src/session.h
+++ b/src/session.h
#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.h>
ne_session *session_get(void);
diff --git a/src/statcache.c b/src/statcache.c
index 3622a73a468f61c98abf5a0902c8c0636c13a0a2..f71c1a6b4088ff07e559c07d5d5247789cdec26a 100644 (file)
--- a/src/statcache.c
+++ b/src/statcache.c
+/* $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 <config.h>
+#endif
+
#include <stdio.h>
#include <inttypes.h>
#include <time.h>
diff --git a/src/statcache.h b/src/statcache.h
index 5af9bd9af607cd3a40749ecc92c0ee95f2fb3eba..6e96ba4be4099ab13988f1809a98df2ad64744b2 100644 (file)
--- a/src/statcache.h
+++ b/src/statcache.h
#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 <sys/stat.h>
int stat_cache_get(const char *fn, struct stat *st);