summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAaron Ball <nullspoon@oper.io>2016-12-29 00:25:26 -0700
committerAaron Ball <nullspoon@oper.io>2016-12-29 00:25:26 -0700
commit00f1a1836298e78a2676768e21791230ffc3d149 (patch)
treeadb1eb7fa1eaffa6b8eb2a8e9c7d49e2e772fc1a
parent5df1855c71a5339f05da2e0709ee53ffee07c287 (diff)
downloadnoteless-00f1a1836298e78a2676768e21791230ffc3d149.tar.gz
noteless-00f1a1836298e78a2676768e21791230ffc3d149.tar.xz
Fixed license headers
They were all over the place. Unified the copyright years as well as the owner name and email address.
-rw-r--r--src/common.c2
-rw-r--r--src/common.h2
-rw-r--r--src/config.c2
-rw-r--r--src/config.h2
-rw-r--r--src/main.c16
-rw-r--r--src/note.c2
-rw-r--r--src/note.h2
-rw-r--r--src/note_list.c2
-rw-r--r--src/note_list.h2
-rw-r--r--src/path.c2
-rw-r--r--src/path.h2
11 files changed, 26 insertions, 10 deletions
diff --git a/src/common.c b/src/common.c
index 5f1ba3e..b7abb03 100644
--- a/src/common.c
+++ b/src/common.c
@@ -1,5 +1,5 @@
/**
- * Copyright (C) 2015 Aaron Ball <nullspoon@iohq.net>
+ * Copyright (C) 2016 Aaron Ball <nullspoon@oper.io>
*
* Noteless is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/common.h b/src/common.h
index 262db6b..1d5632f 100644
--- a/src/common.h
+++ b/src/common.h
@@ -1,5 +1,5 @@
/**
- * Copyright (C) 2015 Aaron Ball <nullspoon@iohq.net>
+ * Copyright (C) 2016 Aaron Ball <nullspoon@oper.io>
*
* Noteless is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/config.c b/src/config.c
index 3453fa7..2661f4c 100644
--- a/src/config.c
+++ b/src/config.c
@@ -1,7 +1,7 @@
/**
* A class to help with parsing standard config files
*
- * Copyright (C) 2014 Aaron Ball <nullspoon@iohq.net>
+ * Copyright (C) 2016 Aaron Ball <nullspoon@oper.io>
*
* Noteless is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/config.h b/src/config.h
index e71ccec..36e535e 100644
--- a/src/config.h
+++ b/src/config.h
@@ -1,7 +1,7 @@
/**
* A class to help with parsing standard config files
*
- * Copyright (C) 2014 Aaron Ball
+ * Copyright (C) 2016 Aaron Ball <nullspoon@oper.io>
*
* 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
diff --git a/src/main.c b/src/main.c
index 336ce15..8e02d4f 100644
--- a/src/main.c
+++ b/src/main.c
@@ -1,3 +1,19 @@
+/**
+ * Copyright (C) 2016 Aaron Ball <nullspoon@oper.io>
+ *
+ * Noteless 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.
+ *
+ * Noteless 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 noteless. If not, see <http://www.gnu.org/licenses/>.
+ */
#include <stdio.h>
#include <stdlib.h>
#include <dirent.h>
diff --git a/src/note.c b/src/note.c
index 3be4a9a..8d5146d 100644
--- a/src/note.c
+++ b/src/note.c
@@ -1,5 +1,5 @@
/**
- * Copyright (C) 2014 Aaron Ball <nullspoon@iohq.net>
+ * Copyright (C) 2016 Aaron Ball <nullspoon@oper.io>
*
* Noteless is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/note.h b/src/note.h
index bb2a9f7..04a3404 100644
--- a/src/note.h
+++ b/src/note.h
@@ -1,5 +1,5 @@
/**
- * Copyright (C) 2014 Aaron Ball <nullspoon@iohq.net>
+ * Copyright (C) 2016 Aaron Ball <nullspoon@oper.io>
*
* Noteless is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/note_list.c b/src/note_list.c
index 19727bb..d354257 100644
--- a/src/note_list.c
+++ b/src/note_list.c
@@ -1,5 +1,5 @@
/**
- * Copyright (C) 2014 Aaron Ball <nullspoon@iohq.net>
+ * Copyright (C) 2016 Aaron Ball <nullspoon@oper.io>
*
* Noteless is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/note_list.h b/src/note_list.h
index 524e689..ddbb3e7 100644
--- a/src/note_list.h
+++ b/src/note_list.h
@@ -1,5 +1,5 @@
/**
- * Copyright (C) 2014 Aaron Ball <nullspoon@iohq.net>
+ * Copyright (C) 2016 Aaron Ball <nullspoon@oper.io>
*
* Noteless is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/path.c b/src/path.c
index faa9419..b7c238b 100644
--- a/src/path.c
+++ b/src/path.c
@@ -1,5 +1,5 @@
/**
- * Copyright (C) 2014 Aaron Ball <nullspoon@iohq.net>
+ * Copyright (C) 2016 Aaron Ball <nullspoon@oper.io>
*
* Noteless is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/path.h b/src/path.h
index 88156e4..52b3bc3 100644
--- a/src/path.h
+++ b/src/path.h
@@ -1,5 +1,5 @@
/**
- * Copyright (C) 2014 Aaron Ball <nullspoon@iohq.net>
+ * Copyright (C) 2016 Aaron Ball <nullspoon@oper.io>
*
* Noteless is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by

Generated by cgit