summaryrefslogtreecommitdiff
path: root/epan/reedsolomon.c
diff options
context:
space:
mode:
authorEvan Huus <eapache@gmail.com>2014-02-11 20:45:31 -0500
committerEvan Huus <eapache@gmail.com>2014-02-12 01:47:48 +0000
commit1bbe5cf5967eeffe13a99d94fda8330aca6b0a6c (patch)
tree37f42723692e111b21d5d61c13bb64dfffedec70 /epan/reedsolomon.c
parent10084c344c89fdadc915e47bcece84a2ac511dc5 (diff)
downloadwireshark-1bbe5cf5967eeffe13a99d94fda8330aca6b0a6c.tar.gz
Add correct license headers for reedsolomon code.
I got in contact with the original author (thanks to Didier for digging up his current email address) and verified that we could license this under the GPLv2+. Licensecheck finally passes! Change-Id: I6660ef9a961626bbc4dad53e8bf767b5b9e0b3fa Reviewed-on: https://code.wireshark.org/review/183 Reviewed-by: Evan Huus <eapache@gmail.com>
Diffstat (limited to 'epan/reedsolomon.c')
-rw-r--r--epan/reedsolomon.c32
1 files changed, 23 insertions, 9 deletions
diff --git a/epan/reedsolomon.c b/epan/reedsolomon.c
index 3fbcc0039f..012d4c3aaa 100644
--- a/epan/reedsolomon.c
+++ b/epan/reedsolomon.c
@@ -1,18 +1,32 @@
-/*
- *
- * $Id$
+/* reedsolomon.c
*
- * Reed-Solomon coding and decoding
- * Phil Karn (karn@ka9q.ampr.org) September 1996
+ * Reed-Solomon encoding and decoding,
+ * by Phil Karn (karn@ka9q.ampr.org) September 1996
+ * Copyright 1999 Phil Karn, KA9Q
* Separate CCSDS version create Dec 1998, merged into this version May 1999
- *
+ *
* This file is derived from my generic RS encoder/decoder, which is
* in turn based on the program "new_rs_erasures.c" by Robert
* Morelos-Zaragoza (robert@spectra.eng.hawaii.edu) and Hari Thirumoorthy
* (harit@spectra.eng.hawaii.edu), Aug 1995
-
- * Copyright 1999 Phil Karn, KA9Q
- * May be used under the terms of the GNU public license
+ *
+ * Wireshark - Network traffic analyzer
+ * By Gerald Combs <gerald@wireshark.org>
+ * Copyright 1998 Gerald Combs
+ *
+ * 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; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * 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; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#include <stdio.h>
#include "reedsolomon.h"