summaryrefslogtreecommitdiff
path: root/diff-delta.c
diff options
context:
space:
mode:
authorNicolas Pitre <nico@cam.org>2007-05-26 02:16:27 (GMT)
committerJunio C Hamano <junkio@cox.net>2007-05-27 03:28:13 (GMT)
commit366b53c170ed4ac6a497757da1cbd0e316e48767 (patch)
tree09ee50bdcbad07192e4d344ff74488fc0e1364d7 /diff-delta.c
parent843366961cf14aad6490fbeb30f7b98f37f8833a (diff)
downloadgit-366b53c170ed4ac6a497757da1cbd0e316e48767.zip
git-366b53c170ed4ac6a497757da1cbd0e316e48767.tar.gz
git-366b53c170ed4ac6a497757da1cbd0e316e48767.tar.bz2
update diff-delta.c copyright
There is actually nothing left from the original LibXDiff code I used over 2 years ago, and even the GIT implementation has diverged quite a bit from LibXDiff's at this point. Let's update the copyright notice to better reflect that fact. Signed-off-by: Nicolas Pitre <nico@cam.org> Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'diff-delta.c')
-rw-r--r--diff-delta.c19
1 files changed, 6 insertions, 13 deletions
diff --git a/diff-delta.c b/diff-delta.c
index 3a737da..17757d2 100644
--- a/diff-delta.c
+++ b/diff-delta.c
@@ -1,21 +1,14 @@
/*
* diff-delta.c: generate a delta between two buffers
*
- * Many parts of this file have been lifted from LibXDiff version 0.10.
- * http://www.xmailserver.org/xdiff-lib.html
+ * This code was greatly inspired by parts of LibXDiff from Davide Libenzi
+ * http://www.xmailserver.org/xdiff-lib.html
*
- * LibXDiff was written by Davide Libenzi <davidel@xmailserver.org>
- * Copyright (C) 2003 Davide Libenzi
+ * Rewritten for GIT by Nicolas Pitre <nico@cam.org>, (C) 2005-2007
*
- * Many mods for GIT usage by Nicolas Pitre <nico@cam.org>, (C) 2005.
- *
- * This file is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2.1 of the License, or (at your option) any later version.
- *
- * Use of this within git automatically means that the LGPL
- * licensing gets turned into GPLv2 within this project.
+ * This code is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License version 2 as
+ * published by the Free Software Foundation.
*/
#include "git-compat-util.h"