aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeff Garzik <jeff@garzik.org>2006-08-05 16:12:34 -0400
committerJeff Garzik <jeff@garzik.org>2006-08-05 16:12:34 -0400
commit4569638405d7cc1bdd487a4c9e49ffa9dc7adfad (patch)
tree32718cd6c976e6b115ebb9b49b56eff9c40af65e
parent7a96bdc61f66c9c465ec35fb99082e357f9b9054 (diff)
downloaddbfs-4569638405d7cc1bdd487a4c9e49ffa9dc7adfad.tar.gz
Add copyright header to source files.
-rw-r--r--dbfs-backend.c18
-rw-r--r--dbfs.c18
-rw-r--r--dbfs.h18
-rw-r--r--dbfsck.c18
-rw-r--r--libdbfs.c18
-rw-r--r--mkdbfs.c18
-rw-r--r--xattr.c19
7 files changed, 127 insertions, 0 deletions
diff --git a/dbfs-backend.c b/dbfs-backend.c
index 0f10e71..5722e6b 100644
--- a/dbfs-backend.c
+++ b/dbfs-backend.c
@@ -1,4 +1,22 @@
+/*
+ * Copyright 2006 Jeff Garzik <jgarzik@pobox.com>
+ *
+ * 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.
+ *
+ * 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; see the file COPYING. If not, write to
+ * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
+ *
+ */
+
#include <sys/types.h>
#include <sys/stat.h>
#include <stdlib.h>
diff --git a/dbfs.c b/dbfs.c
index cfeae51..380d777 100644
--- a/dbfs.c
+++ b/dbfs.c
@@ -1,4 +1,22 @@
+/*
+ * Copyright 2006 Jeff Garzik <jgarzik@pobox.com>
+ *
+ * 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.
+ *
+ * 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; see the file COPYING. If not, write to
+ * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
+ *
+ */
+
#define FUSE_USE_VERSION 25
#include <fuse_lowlevel.h>
diff --git a/dbfs.h b/dbfs.h
index 1bb578e..fb96e4f 100644
--- a/dbfs.h
+++ b/dbfs.h
@@ -1,6 +1,24 @@
#ifndef __DBFS_H__
#define __DBFS_H__
+/*
+ * Copyright 2006 Jeff Garzik <jgarzik@pobox.com>
+ *
+ * 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.
+ *
+ * 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; see the file COPYING. If not, write to
+ * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
+ *
+ */
+
#include <glib.h>
#define ALIGN(x,a) (((x)+(a)-1)&~((a)-1))
diff --git a/dbfsck.c b/dbfsck.c
index 7015814..7cf8628 100644
--- a/dbfsck.c
+++ b/dbfsck.c
@@ -1,4 +1,22 @@
+/*
+ * Copyright 2006 Jeff Garzik <jgarzik@pobox.com>
+ *
+ * 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.
+ *
+ * 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; see the file COPYING. If not, write to
+ * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
+ *
+ */
+
#include <db.h>
#include "dbfs.h"
diff --git a/libdbfs.c b/libdbfs.c
index 36e5ead..7738e15 100644
--- a/libdbfs.c
+++ b/libdbfs.c
@@ -1,4 +1,22 @@
+/*
+ * Copyright 2006 Jeff Garzik <jgarzik@pobox.com>
+ *
+ * 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.
+ *
+ * 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; see the file COPYING. If not, write to
+ * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
+ *
+ */
+
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
diff --git a/mkdbfs.c b/mkdbfs.c
index f87fd19..60d20aa 100644
--- a/mkdbfs.c
+++ b/mkdbfs.c
@@ -1,4 +1,22 @@
+/*
+ * Copyright 2006 Jeff Garzik <jgarzik@pobox.com>
+ *
+ * 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.
+ *
+ * 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; see the file COPYING. If not, write to
+ * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
+ *
+ */
+
#include <sys/types.h>
#include <sys/stat.h>
#include <stdlib.h>
diff --git a/xattr.c b/xattr.c
index abcdc82..bc7401e 100644
--- a/xattr.c
+++ b/xattr.c
@@ -1,3 +1,22 @@
+
+/*
+ * Copyright 2006 Jeff Garzik <jgarzik@pobox.com>
+ *
+ * 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.
+ *
+ * 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; see the file COPYING. If not, write to
+ * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
+ *
+ */
+
#include <stdlib.h>
#include <string.h>
#include <errno.h>