summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lib/lz4.c2
-rw-r--r--lib/lz4.h2
-rw-r--r--lib/lz4frame.c2
-rw-r--r--lib/lz4frame.h2
-rw-r--r--lib/lz4frame_static.h2
-rw-r--r--lib/lz4hc.c2
-rw-r--r--lib/lz4hc.h2
-rw-r--r--programs/bench.c2
-rw-r--r--programs/bench.h2
-rw-r--r--programs/datagen.c2
-rw-r--r--programs/datagen.h2
-rw-r--r--programs/lz4cli.c2
-rw-r--r--programs/lz4io.c2
-rw-r--r--programs/lz4io.h2
-rw-r--r--tests/Makefile2
-rw-r--r--tests/datagencli.c2
-rw-r--r--tests/frametest.c2
-rw-r--r--tests/fullbench.c2
-rw-r--r--tests/fuzzer.c2
19 files changed, 19 insertions, 19 deletions
diff --git a/lib/lz4.c b/lib/lz4.c
index 08128bb..5b7d71f 100644
--- a/lib/lz4.c
+++ b/lib/lz4.c
@@ -29,7 +29,7 @@
You can contact the author at :
- LZ4 homepage : http://www.lz4.org
- - LZ4 source repository : https://github.com/Cyan4973/lz4
+ - LZ4 source repository : https://github.com/lz4/lz4
*/
diff --git a/lib/lz4.h b/lib/lz4.h
index 0f17c7c..fc27c95 100644
--- a/lib/lz4.h
+++ b/lib/lz4.h
@@ -30,7 +30,7 @@
You can contact the author at :
- LZ4 homepage : http://www.lz4.org
- - LZ4 source repository : https://github.com/Cyan4973/lz4
+ - LZ4 source repository : https://github.com/lz4/lz4
*/
#ifndef LZ4_H_2983827168210
#define LZ4_H_2983827168210
diff --git a/lib/lz4frame.c b/lib/lz4frame.c
index 9df2493..6bb76a1 100644
--- a/lib/lz4frame.c
+++ b/lib/lz4frame.c
@@ -29,7 +29,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
You can contact the author at :
- LZ4 homepage : http://www.lz4.org
-- LZ4 source repository : https://github.com/Cyan4973/lz4
+- LZ4 source repository : https://github.com/lz4/lz4
*/
/* LZ4F is a stand-alone API to create LZ4-compressed Frames
diff --git a/lib/lz4frame.h b/lib/lz4frame.h
index a70d0e0..79164b8 100644
--- a/lib/lz4frame.h
+++ b/lib/lz4frame.h
@@ -28,7 +28,7 @@
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
You can contact the author at :
- - LZ4 source repository : https://github.com/Cyan4973/lz4
+ - LZ4 source repository : https://github.com/lz4/lz4
- LZ4 public forum : https://groups.google.com/forum/#!forum/lz4c
*/
diff --git a/lib/lz4frame_static.h b/lib/lz4frame_static.h
index 0d90975..79e481c 100644
--- a/lib/lz4frame_static.h
+++ b/lib/lz4frame_static.h
@@ -29,7 +29,7 @@
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
You can contact the author at :
- - LZ4 source repository : https://github.com/Cyan4973/lz4
+ - LZ4 source repository : https://github.com/lz4/lz4
- LZ4 public forum : https://groups.google.com/forum/#!forum/lz4c
*/
diff --git a/lib/lz4hc.c b/lib/lz4hc.c
index 68afa98..a1d1a55 100644
--- a/lib/lz4hc.c
+++ b/lib/lz4hc.c
@@ -28,7 +28,7 @@
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
You can contact the author at :
- - LZ4 source repository : https://github.com/Cyan4973/lz4
+ - LZ4 source repository : https://github.com/lz4/lz4
- LZ4 public forum : https://groups.google.com/forum/#!forum/lz4c
*/
diff --git a/lib/lz4hc.h b/lib/lz4hc.h
index 3995ada..4f676aa 100644
--- a/lib/lz4hc.h
+++ b/lib/lz4hc.h
@@ -28,7 +28,7 @@
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
You can contact the author at :
- - LZ4 source repository : https://github.com/Cyan4973/lz4
+ - LZ4 source repository : https://github.com/lz4/lz4
- LZ4 public forum : https://groups.google.com/forum/#!forum/lz4c
*/
#ifndef LZ4_HC_H_19834876238432
diff --git a/programs/bench.c b/programs/bench.c
index 5952f47..bec93f9 100644
--- a/programs/bench.c
+++ b/programs/bench.c
@@ -20,7 +20,7 @@
You can contact the author at :
- LZ4 homepage : http://www.lz4.org
- - LZ4 source repository : https://github.com/Cyan4973/lz4
+ - LZ4 source repository : https://github.com/lz4/lz4
*/
/*-************************************
diff --git a/programs/bench.h b/programs/bench.h
index 1e3df78..e84aaee 100644
--- a/programs/bench.h
+++ b/programs/bench.h
@@ -17,7 +17,7 @@
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
You can contact the author at :
- - LZ4 source repository : https://github.com/Cyan4973/lz4
+ - LZ4 source repository : https://github.com/lz4/lz4
- LZ4 public forum : https://groups.google.com/forum/#!forum/lz4c
*/
#pragma once
diff --git a/programs/datagen.c b/programs/datagen.c
index 5e4cdd2..d851418 100644
--- a/programs/datagen.c
+++ b/programs/datagen.c
@@ -19,7 +19,7 @@
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
You can contact the author at :
- - LZ4 source repository : https://github.com/Cyan4973/lz4
+ - LZ4 source repository : https://github.com/lz4/lz4
- Public forum : https://groups.google.com/forum/#!forum/lz4c
*/
diff --git a/programs/datagen.h b/programs/datagen.h
index 2bf3d7f..680afa2 100644
--- a/programs/datagen.h
+++ b/programs/datagen.h
@@ -19,7 +19,7 @@
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
You can contact the author at :
- - LZ4 source repository : https://github.com/Cyan4973/lz4
+ - LZ4 source repository : https://github.com/lz4/lz4
- Public forum : https://groups.google.com/forum/#!forum/lz4c
*/
diff --git a/programs/lz4cli.c b/programs/lz4cli.c
index 961bea1..7cf035e 100644
--- a/programs/lz4cli.c
+++ b/programs/lz4cli.c
@@ -19,7 +19,7 @@
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
You can contact the author at :
- - LZ4 source repository : https://github.com/Cyan4973/lz4
+ - LZ4 source repository : https://github.com/lz4/lz4
- LZ4 public forum : https://groups.google.com/forum/#!forum/lz4c
*/
/*
diff --git a/programs/lz4io.c b/programs/lz4io.c
index 492363f..29bf359 100644
--- a/programs/lz4io.c
+++ b/programs/lz4io.c
@@ -19,7 +19,7 @@
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
You can contact the author at :
- - LZ4 source repository : https://github.com/Cyan4973/lz4
+ - LZ4 source repository : https://github.com/lz4/lz4
- LZ4 public forum : https://groups.google.com/forum/#!forum/lz4c
*/
/*
diff --git a/programs/lz4io.h b/programs/lz4io.h
index 11c8fdb..4f0e02a 100644
--- a/programs/lz4io.h
+++ b/programs/lz4io.h
@@ -18,7 +18,7 @@
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
You can contact the author at :
- - LZ4 source repository : https://github.com/Cyan4973/lz4
+ - LZ4 source repository : https://github.com/lz4/lz4
- LZ4 public forum : https://groups.google.com/forum/#!forum/lz4c
*/
/*
diff --git a/tests/Makefile b/tests/Makefile
index 7652476..24cb37a 100644
--- a/tests/Makefile
+++ b/tests/Makefile
@@ -21,7 +21,7 @@
#
# You can contact the author at :
# - LZ4 homepage : http://www.lz4.org
-# - LZ4 source repository : https://github.com/Cyan4973/lz4
+# - LZ4 source repository : https://github.com/lz4/lz4
# ##########################################################################
# fuzzer : Test tool, to check lz4 integrity on target platform
# fuzzer32: Same as fuzzer, but forced to compile in 32-bits mode
diff --git a/tests/datagencli.c b/tests/datagencli.c
index 2fbcc50..d74d5dd 100644
--- a/tests/datagencli.c
+++ b/tests/datagencli.c
@@ -20,7 +20,7 @@
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
You can contact the author at :
- - LZ4 source repository : https://github.com/Cyan4973/lz4
+ - LZ4 source repository : https://github.com/lz4/lz4
- Public forum : https://groups.google.com/forum/#!forum/lz4c
*/
diff --git a/tests/frametest.c b/tests/frametest.c
index 4322ab8..ccf4278 100644
--- a/tests/frametest.c
+++ b/tests/frametest.c
@@ -20,7 +20,7 @@
You can contact the author at :
- LZ4 homepage : http://www.lz4.org
- - LZ4 source repository : https://github.com/Cyan4973/lz4
+ - LZ4 source repository : https://github.com/lz4/lz4
*/
/*-************************************
diff --git a/tests/fullbench.c b/tests/fullbench.c
index ab6bba1..67442b2 100644
--- a/tests/fullbench.c
+++ b/tests/fullbench.c
@@ -19,7 +19,7 @@
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
You can contact the author at :
- - LZ4 source repository : https://github.com/Cyan4973/lz4
+ - LZ4 source repository : https://github.com/lz4/lz4
- LZ4 public forum : https://groups.google.com/forum/#!forum/lz4c
*/
diff --git a/tests/fuzzer.c b/tests/fuzzer.c
index db7ad07..bbf4e14 100644
--- a/tests/fuzzer.c
+++ b/tests/fuzzer.c
@@ -20,7 +20,7 @@
You can contact the author at :
- LZ4 homepage : http://www.lz4.org
- - LZ4 source repo : https://github.com/Cyan4973/lz4
+ - LZ4 source repo : https://github.com/lz4/lz4
*/
/*-************************************