summaryrefslogtreecommitdiff
path: root/src/lib
diff options
context:
space:
mode:
authordimitri staessens <dimitri.staessens@ugent.be>2017-08-13 12:17:58 +0200
committerdimitri staessens <dimitri.staessens@ugent.be>2017-08-13 12:17:58 +0200
commit095c2414425952836e97d88a6dde6f4415725c68 (patch)
tree30edf3d9758b628c2f3f551417b8a6ffc7dd1304 /src/lib
parent65f5aa30dc5cb6a284785835b0b14e5b19dfaa9a (diff)
downloadouroboros-095c2414425952836e97d88a6dde6f4415725c68.tar.gz
ouroboros-095c2414425952836e97d88a6dde6f4415725c68.zip
build: Replace fsf snail mail with contact URL
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/bitmap.c3
-rw-r--r--src/lib/btree.c3
-rw-r--r--src/lib/cacep.c3
-rw-r--r--src/lib/cacep.proto3
-rw-r--r--src/lib/cdap.c3
-rw-r--r--src/lib/cdap.proto3
-rw-r--r--src/lib/cdap_req.c3
-rw-r--r--src/lib/cdap_req.h3
-rw-r--r--src/lib/crc32.c3
-rw-r--r--src/lib/dev.c3
-rw-r--r--src/lib/hash.c3
-rw-r--r--src/lib/hashtable.c3
-rw-r--r--src/lib/ipcp_config.proto3
-rw-r--r--src/lib/ipcpd_messages.proto3
-rw-r--r--src/lib/irm.c3
-rw-r--r--src/lib/irmd_messages.proto3
-rw-r--r--src/lib/list.c3
-rw-r--r--src/lib/lockfile.c3
-rw-r--r--src/lib/logs.c3
-rw-r--r--src/lib/md5.c3
-rw-r--r--src/lib/nsm.c3
-rw-r--r--src/lib/qos.c3
-rw-r--r--src/lib/qoscube.c3
-rw-r--r--src/lib/random.c3
-rw-r--r--src/lib/rib.c3
-rw-r--r--src/lib/ro.proto3
-rw-r--r--src/lib/sha3.c3
-rw-r--r--src/lib/shm_flow_set.c3
-rw-r--r--src/lib/shm_rbuff.c3
-rw-r--r--src/lib/shm_rbuff_ll.c3
-rw-r--r--src/lib/shm_rbuff_pthr.c3
-rw-r--r--src/lib/shm_rdrbuff.c3
-rw-r--r--src/lib/sockets.c3
-rw-r--r--src/lib/tests/bitmap_test.c2
-rw-r--r--src/lib/tests/btree_test.c2
-rw-r--r--src/lib/tests/crc32_test.c2
-rw-r--r--src/lib/tests/hashtable_test.c2
-rw-r--r--src/lib/tests/md5_test.c2
-rw-r--r--src/lib/tests/rib_test.c2
-rw-r--r--src/lib/tests/sha3_test.c2
-rw-r--r--src/lib/tests/time_utils_test.c2
-rw-r--r--src/lib/time_utils.c3
-rw-r--r--src/lib/tpm.c3
-rw-r--r--src/lib/utils.c3
44 files changed, 44 insertions, 80 deletions
diff --git a/src/lib/bitmap.c b/src/lib/bitmap.c
index ce1a3ee9..6ddaaca4 100644
--- a/src/lib/bitmap.c
+++ b/src/lib/bitmap.c
@@ -17,8 +17,7 @@
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
- * 02110-1301 USA
+ * Foundation, Inc., http://www.fsf.org/about/contact/.
*/
#include <ouroboros/bitmap.h>
diff --git a/src/lib/btree.c b/src/lib/btree.c
index 03047a18..8be8b99f 100644
--- a/src/lib/btree.c
+++ b/src/lib/btree.c
@@ -17,8 +17,7 @@
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
- * 02110-1301 USA
+ * Foundation, Inc., http://www.fsf.org/about/contact/.
*/
#include <ouroboros/errno.h>
diff --git a/src/lib/cacep.c b/src/lib/cacep.c
index 19585126..55d11b0f 100644
--- a/src/lib/cacep.c
+++ b/src/lib/cacep.c
@@ -17,8 +17,7 @@
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
- * 02110-1301 USA
+ * Foundation, Inc., http://www.fsf.org/about/contact/.
*/
#include <ouroboros/config.h>
diff --git a/src/lib/cacep.proto b/src/lib/cacep.proto
index 8a159a35..53260a0c 100644
--- a/src/lib/cacep.proto
+++ b/src/lib/cacep.proto
@@ -17,8 +17,7 @@
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
- * 02110-1301 USA
+ * Foundation, Inc., http://www.fsf.org/about/contact/.
*/
syntax = "proto2";
diff --git a/src/lib/cdap.c b/src/lib/cdap.c
index c1209138..bf8d5816 100644
--- a/src/lib/cdap.c
+++ b/src/lib/cdap.c
@@ -17,8 +17,7 @@
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
- * 02110-1301 USA
+ * Foundation, Inc., http://www.fsf.org/about/contact/.
*/
#include <ouroboros/config.h>
diff --git a/src/lib/cdap.proto b/src/lib/cdap.proto
index 120b2c97..c83addcb 100644
--- a/src/lib/cdap.proto
+++ b/src/lib/cdap.proto
@@ -17,8 +17,7 @@
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
- * 02110-1301 USA
+ * Foundation, Inc., http://www.fsf.org/about/contact/.
*/
syntax = "proto2";
diff --git a/src/lib/cdap_req.c b/src/lib/cdap_req.c
index a89d6b2a..7aded62f 100644
--- a/src/lib/cdap_req.c
+++ b/src/lib/cdap_req.c
@@ -17,8 +17,7 @@
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
- * 02110-1301 USA
+ * Foundation, Inc., http://www.fsf.org/about/contact/.
*/
#include <ouroboros/config.h>
diff --git a/src/lib/cdap_req.h b/src/lib/cdap_req.h
index b21467f3..89f4145a 100644
--- a/src/lib/cdap_req.h
+++ b/src/lib/cdap_req.h
@@ -17,8 +17,7 @@
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
- * 02110-1301 USA
+ * Foundation, Inc., http://www.fsf.org/about/contact/.
*/
#ifndef OUROBOROS_CDAP_REQ_H
diff --git a/src/lib/crc32.c b/src/lib/crc32.c
index 549938b8..d65215f9 100644
--- a/src/lib/crc32.c
+++ b/src/lib/crc32.c
@@ -17,8 +17,7 @@
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
- * 02110-1301 USA
+ * Foundation, Inc., http://www.fsf.org/about/contact/.
*/
#include <ouroboros/crc32.h>
diff --git a/src/lib/dev.c b/src/lib/dev.c
index daa41a23..9354855b 100644
--- a/src/lib/dev.c
+++ b/src/lib/dev.c
@@ -17,8 +17,7 @@
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
- * 02110-1301 USA
+ * Foundation, Inc., http://www.fsf.org/about/contact/.
*/
#include <ouroboros/config.h>
diff --git a/src/lib/hash.c b/src/lib/hash.c
index 088d43cd..d8cabfd3 100644
--- a/src/lib/hash.c
+++ b/src/lib/hash.c
@@ -20,8 +20,7 @@
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
- * 02110-1301 USA
+ * Foundation, Inc., http://www.fsf.org/about/contact/.
*/
#include <ouroboros/config.h>
diff --git a/src/lib/hashtable.c b/src/lib/hashtable.c
index 2b49ecba..75cdee84 100644
--- a/src/lib/hashtable.c
+++ b/src/lib/hashtable.c
@@ -17,8 +17,7 @@
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
- * 02110-1301 USA
+ * Foundation, Inc., http://www.fsf.org/about/contact/.
*/
#include <ouroboros/hashtable.h>
diff --git a/src/lib/ipcp_config.proto b/src/lib/ipcp_config.proto
index 25516c2c..f0d5f6eb 100644
--- a/src/lib/ipcp_config.proto
+++ b/src/lib/ipcp_config.proto
@@ -17,8 +17,7 @@
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
- * 02110-1301 USA
+ * Foundation, Inc., http://www.fsf.org/about/contact/.
*/
syntax = "proto2";
diff --git a/src/lib/ipcpd_messages.proto b/src/lib/ipcpd_messages.proto
index 8a9ae214..2e6c0497 100644
--- a/src/lib/ipcpd_messages.proto
+++ b/src/lib/ipcpd_messages.proto
@@ -17,8 +17,7 @@
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
- * 02110-1301 USA
+ * Foundation, Inc., http://www.fsf.org/about/contact/.
*/
syntax = "proto2";
diff --git a/src/lib/irm.c b/src/lib/irm.c
index 828bdfe6..a6075d33 100644
--- a/src/lib/irm.c
+++ b/src/lib/irm.c
@@ -17,8 +17,7 @@
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
- * 02110-1301 USA
+ * Foundation, Inc., http://www.fsf.org/about/contact/.
*/
#include <ouroboros/config.h>
diff --git a/src/lib/irmd_messages.proto b/src/lib/irmd_messages.proto
index 138810da..117752c8 100644
--- a/src/lib/irmd_messages.proto
+++ b/src/lib/irmd_messages.proto
@@ -17,8 +17,7 @@
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
- * 02110-1301 USA
+ * Foundation, Inc., http://www.fsf.org/about/contact/.
*/
syntax = "proto2";
diff --git a/src/lib/list.c b/src/lib/list.c
index d5aba058..1924e0c1 100644
--- a/src/lib/list.c
+++ b/src/lib/list.c
@@ -17,8 +17,7 @@
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
- * 02110-1301 USA
+ * Foundation, Inc., http://www.fsf.org/about/contact/.
*/
#include <ouroboros/list.h>
diff --git a/src/lib/lockfile.c b/src/lib/lockfile.c
index e84c6692..e2e4d289 100644
--- a/src/lib/lockfile.c
+++ b/src/lib/lockfile.c
@@ -17,8 +17,7 @@
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
- * 02110-1301 USA
+ * Foundation, Inc., http://www.fsf.org/about/contact/.
*/
#include <ouroboros/config.h>
diff --git a/src/lib/logs.c b/src/lib/logs.c
index e38f2a8b..a5a37527 100644
--- a/src/lib/logs.c
+++ b/src/lib/logs.c
@@ -17,8 +17,7 @@
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
- * 02110-1301 USA
+ * Foundation, Inc., http://www.fsf.org/about/contact/.
*/
#define OUROBOROS_PREFIX "logging"
diff --git a/src/lib/md5.c b/src/lib/md5.c
index 4534b6a1..a4d92de3 100644
--- a/src/lib/md5.c
+++ b/src/lib/md5.c
@@ -20,8 +20,7 @@
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
- * 02110-1301 USA
+ * Foundation, Inc., http://www.fsf.org/about/contact/.
*
* -- original license
*
diff --git a/src/lib/nsm.c b/src/lib/nsm.c
index 979f711e..2dd5729b 100644
--- a/src/lib/nsm.c
+++ b/src/lib/nsm.c
@@ -17,8 +17,7 @@
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
- * 02110-1301 USA
+ * Foundation, Inc., http://www.fsf.org/about/contact/.
*/
#include <ouroboros/nsm.h>
diff --git a/src/lib/qos.c b/src/lib/qos.c
index 035b9049..35e16f97 100644
--- a/src/lib/qos.c
+++ b/src/lib/qos.c
@@ -17,8 +17,7 @@
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
- * 02110-1301 USA
+ * Foundation, Inc., http://www.fsf.org/about/contact/.
*/
#include <ouroboros/qos.h>
diff --git a/src/lib/qoscube.c b/src/lib/qoscube.c
index 4ab827a6..bf193389 100644
--- a/src/lib/qoscube.c
+++ b/src/lib/qoscube.c
@@ -17,8 +17,7 @@
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
- * 02110-1301 USA
+ * Foundation, Inc., http://www.fsf.org/about/contact/.
*/
#include <ouroboros/qoscube.h>
diff --git a/src/lib/random.c b/src/lib/random.c
index 4ce378cd..5d6763ca 100644
--- a/src/lib/random.c
+++ b/src/lib/random.c
@@ -17,8 +17,7 @@
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
- * 02110-1301 USA
+ * Foundation, Inc., http://www.fsf.org/about/contact/.
*/
#include <ouroboros/config.h>
diff --git a/src/lib/rib.c b/src/lib/rib.c
index e59e0d94..e8cf97d4 100644
--- a/src/lib/rib.c
+++ b/src/lib/rib.c
@@ -17,8 +17,7 @@
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
- * 02110-1301 USA
+ * Foundation, Inc., http://www.fsf.org/about/contact/.
*/
#include <ouroboros/config.h>
diff --git a/src/lib/ro.proto b/src/lib/ro.proto
index 379ccd27..23bdb200 100644
--- a/src/lib/ro.proto
+++ b/src/lib/ro.proto
@@ -17,8 +17,7 @@
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
- * 02110-1301 USA
+ * Foundation, Inc., http://www.fsf.org/about/contact/.
*/
syntax = "proto2";
diff --git a/src/lib/sha3.c b/src/lib/sha3.c
index 2c8a4614..ba74418a 100644
--- a/src/lib/sha3.c
+++ b/src/lib/sha3.c
@@ -20,8 +20,7 @@
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
- * 02110-1301 USA
+ * Foundation, Inc., http://www.fsf.org/about/contact/.
*/
/* sha3.c - an implementation of Secure Hash Algorithm 3 (Keccak).
diff --git a/src/lib/shm_flow_set.c b/src/lib/shm_flow_set.c
index 7660b1dd..cd6946d4 100644
--- a/src/lib/shm_flow_set.c
+++ b/src/lib/shm_flow_set.c
@@ -17,8 +17,7 @@
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
- * 02110-1301 USA
+ * Foundation, Inc., http://www.fsf.org/about/contact/.
*/
#include <ouroboros/config.h>
diff --git a/src/lib/shm_rbuff.c b/src/lib/shm_rbuff.c
index dc3f83b3..7f8af9f5 100644
--- a/src/lib/shm_rbuff.c
+++ b/src/lib/shm_rbuff.c
@@ -17,8 +17,7 @@
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
- * 02110-1301 USA
+ * Foundation, Inc., http://www.fsf.org/about/contact/.
*/
#include <ouroboros/config.h>
diff --git a/src/lib/shm_rbuff_ll.c b/src/lib/shm_rbuff_ll.c
index 757f65c8..33e236b0 100644
--- a/src/lib/shm_rbuff_ll.c
+++ b/src/lib/shm_rbuff_ll.c
@@ -17,8 +17,7 @@
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
- * 02110-1301 USA
+ * Foundation, Inc., http://www.fsf.org/about/contact/.
*/
#include <ouroboros/config.h>
diff --git a/src/lib/shm_rbuff_pthr.c b/src/lib/shm_rbuff_pthr.c
index 1b9f07d1..44001458 100644
--- a/src/lib/shm_rbuff_pthr.c
+++ b/src/lib/shm_rbuff_pthr.c
@@ -17,8 +17,7 @@
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
- * 02110-1301 USA
+ * Foundation, Inc., http://www.fsf.org/about/contact/.
*/
#include <ouroboros/config.h>
diff --git a/src/lib/shm_rdrbuff.c b/src/lib/shm_rdrbuff.c
index 59f32056..0919b1e0 100644
--- a/src/lib/shm_rdrbuff.c
+++ b/src/lib/shm_rdrbuff.c
@@ -17,8 +17,7 @@
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
- * 02110-1301 USA
+ * Foundation, Inc., http://www.fsf.org/about/contact/.
*/
#include <ouroboros/config.h>
diff --git a/src/lib/sockets.c b/src/lib/sockets.c
index 63f928cf..7f0c4dd4 100644
--- a/src/lib/sockets.c
+++ b/src/lib/sockets.c
@@ -17,8 +17,7 @@
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
- * 02110-1301 USA
+ * Foundation, Inc., http://www.fsf.org/about/contact/.
*/
#include <ouroboros/config.h>
diff --git a/src/lib/tests/bitmap_test.c b/src/lib/tests/bitmap_test.c
index 4f58de3b..0d91a700 100644
--- a/src/lib/tests/bitmap_test.c
+++ b/src/lib/tests/bitmap_test.c
@@ -17,7 +17,7 @@
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
- * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ * Foundation, Inc., http://www.fsf.org/about/contact/.
*/
#include "bitmap.c"
diff --git a/src/lib/tests/btree_test.c b/src/lib/tests/btree_test.c
index 83fafabd..1ce28d6a 100644
--- a/src/lib/tests/btree_test.c
+++ b/src/lib/tests/btree_test.c
@@ -17,7 +17,7 @@
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
- * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ * Foundation, Inc., http://www.fsf.org/about/contact/.
*/
diff --git a/src/lib/tests/crc32_test.c b/src/lib/tests/crc32_test.c
index 6a8ee9c3..49818161 100644
--- a/src/lib/tests/crc32_test.c
+++ b/src/lib/tests/crc32_test.c
@@ -17,7 +17,7 @@
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
- * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ * Foundation, Inc., http://www.fsf.org/about/contact/.
*/
#include <ouroboros/crc32.h>
diff --git a/src/lib/tests/hashtable_test.c b/src/lib/tests/hashtable_test.c
index 1160e34d..9d5917f4 100644
--- a/src/lib/tests/hashtable_test.c
+++ b/src/lib/tests/hashtable_test.c
@@ -17,7 +17,7 @@
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
- * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ * Foundation, Inc., http://www.fsf.org/about/contact/.
*/
#include "hashtable.c"
diff --git a/src/lib/tests/md5_test.c b/src/lib/tests/md5_test.c
index 684ecb3f..7fda4394 100644
--- a/src/lib/tests/md5_test.c
+++ b/src/lib/tests/md5_test.c
@@ -17,7 +17,7 @@
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
- * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ * Foundation, Inc., http://www.fsf.org/about/contact/.
*/
#include <ouroboros/md5.h>
diff --git a/src/lib/tests/rib_test.c b/src/lib/tests/rib_test.c
index 54926e10..e1fa427d 100644
--- a/src/lib/tests/rib_test.c
+++ b/src/lib/tests/rib_test.c
@@ -17,7 +17,7 @@
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
- * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ * Foundation, Inc., http://www.fsf.org/about/contact/.
*/
#include <ouroboros/config.h>
diff --git a/src/lib/tests/sha3_test.c b/src/lib/tests/sha3_test.c
index 0d0e8d0a..8a194c68 100644
--- a/src/lib/tests/sha3_test.c
+++ b/src/lib/tests/sha3_test.c
@@ -17,7 +17,7 @@
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
- * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ * Foundation, Inc., http://www.fsf.org/about/contact/.
*/
#include <ouroboros/sha3.h>
diff --git a/src/lib/tests/time_utils_test.c b/src/lib/tests/time_utils_test.c
index 2878132b..b7d37160 100644
--- a/src/lib/tests/time_utils_test.c
+++ b/src/lib/tests/time_utils_test.c
@@ -17,7 +17,7 @@
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
- * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ * Foundation, Inc., http://www.fsf.org/about/contact/.
*/
#define _POSIX_C_SOURCE 200809L
diff --git a/src/lib/time_utils.c b/src/lib/time_utils.c
index c644c889..2dec4524 100644
--- a/src/lib/time_utils.c
+++ b/src/lib/time_utils.c
@@ -17,8 +17,7 @@
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
- * 02110-1301 USA
+ * Foundation, Inc., http://www.fsf.org/about/contact/.
*/
#include <ouroboros/config.h>
diff --git a/src/lib/tpm.c b/src/lib/tpm.c
index 31bb8a7f..739996c4 100644
--- a/src/lib/tpm.c
+++ b/src/lib/tpm.c
@@ -17,8 +17,7 @@
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
- * 02110-1301 USA
+ * Foundation, Inc., http://www.fsf.org/about/contact/.
*/
#include <ouroboros/config.h>
diff --git a/src/lib/utils.c b/src/lib/utils.c
index e97dddb0..b22525ca 100644
--- a/src/lib/utils.c
+++ b/src/lib/utils.c
@@ -17,8 +17,7 @@
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
- * 02110-1301 USA
+ * Foundation, Inc., http://www.fsf.org/about/contact/.
*/
#include <stdlib.h>