summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--cfg.mk2
-rw-r--r--doc/Makefile.am2
-rw-r--r--doc/cyclo/Makefile.am2
-rw-r--r--doc/libtasn1.texi2
-rw-r--r--examples/CertificateExample.c6
-rw-r--r--examples/CrlExample.c4
-rw-r--r--examples/Makefile.am2
-rw-r--r--lib/ASN1.y2
-rw-r--r--lib/coding.c2
-rw-r--r--lib/decoding.c2
-rw-r--r--lib/element.c2
-rw-r--r--lib/errors.c2
-rw-r--r--lib/errors.h4
-rw-r--r--lib/gstr.c4
-rw-r--r--lib/int.h4
-rw-r--r--lib/libtasn1.h4
-rw-r--r--lib/parser_aux.c4
-rw-r--r--lib/structure.c4
-rw-r--r--src/Makefile.am2
-rw-r--r--src/asn1Coding.c4
-rw-r--r--src/asn1Decoding.c6
-rw-r--r--src/asn1Parser.c6
-rw-r--r--tests/Makefile.am2
-rw-r--r--tests/Test_encoding.c4
-rw-r--r--tests/Test_indefinite.c12
-rw-r--r--tests/Test_parser.c6
-rw-r--r--tests/Test_tree.c12
-rwxr-xr-xtests/crlf2
28 files changed, 55 insertions, 55 deletions
diff --git a/cfg.mk b/cfg.mk
index 1c6deb4..e98ed10 100644
--- a/cfg.mk
+++ b/cfg.mk
@@ -1,4 +1,4 @@
-# Copyright (C) 2006, 2007, 2008 Free Software Foundation
+# Copyright (C) 2006, 2007, 2008, 2009 Free Software Foundation
# Author: Simon Josefsson
#
# This file is part of LIBTASN1.
diff --git a/doc/Makefile.am b/doc/Makefile.am
index 5aa1a55..92c4987 100644
--- a/doc/Makefile.am
+++ b/doc/Makefile.am
@@ -160,7 +160,7 @@ doit:
-module $(PACKAGE) -sourceversion $(VERSION) \
-include libtasn1.h \
-seeinfo $(PACKAGE) -verbatimcopying \
- -copyright "2006, 2007, 2008 Free Software Foundation, Inc." \
+ -copyright "2006, 2007, 2008, 2009 Free Software Foundation, Inc." \
-function $$i \
$(GDOC_SRC) > man/$$i.3 && \
$(srcdir)/gdoc -texinfo -function $$i \
diff --git a/doc/cyclo/Makefile.am b/doc/cyclo/Makefile.am
index c217b4d..6c56cd7 100644
--- a/doc/cyclo/Makefile.am
+++ b/doc/cyclo/Makefile.am
@@ -1,5 +1,5 @@
## Process this file with automake to produce Makefile.in
-# Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation
+# Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation
#
# This file is part of LIBTASN1.
#
diff --git a/doc/libtasn1.texi b/doc/libtasn1.texi
index 1927b0d..07f775f 100644
--- a/doc/libtasn1.texi
+++ b/doc/libtasn1.texi
@@ -16,7 +16,7 @@ This manual is for Libtasn1
which is a library for Abstract Syntax Notation One (ASN.1) and
Distinguish Encoding Rules (DER) manipulation.
-Copyright @copyright{} 2004, 2006, 2007, 2008 Free Software Foundation
+Copyright @copyright{} 2004, 2006, 2007, 2008, 2009 Free Software Foundation
Copyright @copyright{} 2001, 2002, 2003 Fabio Fiorina
@quotation
diff --git a/examples/CertificateExample.c b/examples/CertificateExample.c
index 02e9bfd..d2837b9 100644
--- a/examples/CertificateExample.c
+++ b/examples/CertificateExample.c
@@ -1,6 +1,6 @@
/*
- * Copyright (C) 2006, 2007, 2008 Free Software Foundation
- * Copyright (C) 2000,2001 Fabio Fiorina
+ * Copyright (C) 2006, 2007, 2008, 2009 Free Software Foundation
+ * Copyright (C) 2000,2001 Fabio Fiorina
*
* This file is part of LIBTASN1.
*
@@ -22,7 +22,7 @@
/*****************************************************/
/* File: CertificateExample.c */
/* Description: An example on how to use the ASN1 */
-/* parser with the Certificate.txt file */
+/* parser with the Certificate.txt file */
/*****************************************************/
#include <stdio.h>
diff --git a/examples/CrlExample.c b/examples/CrlExample.c
index b66f7e4..7efd62f 100644
--- a/examples/CrlExample.c
+++ b/examples/CrlExample.c
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2006, 2007, 2008 Free Software Foundation
+ * Copyright (C) 2006, 2007, 2008, 2009 Free Software Foundation
* Copyright (C) 2000,2001 Fabio Fiorina
*
* This file is part of LIBTASN1.
@@ -22,7 +22,7 @@
/*****************************************************/
/* File: CrlExample.c */
/* Description: An example on how to use the ASN1 */
-/* parser with the Certificate.txt file */
+/* parser with the Certificate.txt file */
/*****************************************************/
#include <stdio.h>
diff --git a/examples/Makefile.am b/examples/Makefile.am
index 40d78c2..62c84f0 100644
--- a/examples/Makefile.am
+++ b/examples/Makefile.am
@@ -1,5 +1,5 @@
## Process this file with automake to produce Makefile.in
-# Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation
+# Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation
#
# This file is part of LIBTASN1.
#
diff --git a/lib/ASN1.y b/lib/ASN1.y
index eaae9eb..dd507c3 100644
--- a/lib/ASN1.y
+++ b/lib/ASN1.y
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2004, 2005, 2006, 2008 Free Software Foundation, Inc.
+ * Copyright (C) 2004, 2005, 2006, 2008, 2009 Free Software Foundation, Inc.
* Copyright (C) 2001, 2002 Fabio Fiorina
*
* This file is part of LIBTASN1.
diff --git a/lib/coding.c b/lib/coding.c
index 9a5821b..f53ca04 100644
--- a/lib/coding.c
+++ b/lib/coding.c
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2004, 2006, 2008 Free Software Foundation
+ * Copyright (C) 2004, 2006, 2008, 2009 Free Software Foundation
* Copyright (C) 2002 Fabio Fiorina
*
* This file is part of LIBTASN1.
diff --git a/lib/decoding.c b/lib/decoding.c
index b120931..58e4da9 100644
--- a/lib/decoding.c
+++ b/lib/decoding.c
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2004, 2006, 2008 Free Software Foundation
+ * Copyright (C) 2004, 2006, 2008, 2009 Free Software Foundation
* Copyright (C) 2002 Fabio Fiorina
*
* This file is part of LIBTASN1.
diff --git a/lib/element.c b/lib/element.c
index e82807f..c3786cf 100644
--- a/lib/element.c
+++ b/lib/element.c
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2004, 2006, 2008 Free Software Foundation
+ * Copyright (C) 2004, 2006, 2008, 2009 Free Software Foundation
* Copyright (C) 2000, 2001, 2002, 2003 Fabio Fiorina
*
* This file is part of LIBTASN1.
diff --git a/lib/errors.c b/lib/errors.c
index 9524fe1..786f220 100644
--- a/lib/errors.c
+++ b/lib/errors.c
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2006, 2008 Free Software Foundation, Inc.
+ * Copyright (C) 2006, 2008, 2009 Free Software Foundation, Inc.
* Copyright (C) 2002, 2005 Fabio Fiorina
*
* This file is part of LIBTASN1.
diff --git a/lib/errors.h b/lib/errors.h
index f8bf224..ceb2e7b 100644
--- a/lib/errors.h
+++ b/lib/errors.h
@@ -1,6 +1,6 @@
/*
- * Copyright (C) 2004, 2006 Free Software Foundation, Inc.
- * Copyright (C) 2002 Fabio Fiorina
+ * Copyright (C) 2004, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
+ * Copyright (C) 2002 Fabio Fiorina
*
* This file is part of LIBTASN1.
*
diff --git a/lib/gstr.c b/lib/gstr.c
index bf8f90c..9c08351 100644
--- a/lib/gstr.c
+++ b/lib/gstr.c
@@ -1,6 +1,6 @@
/*
- * Copyright (C) 2006, 2008 Free Software Foundation
- * Copyright (C) 2002 Nikos Mavroyanopoulos
+ * Copyright (C) 2006, 2007, 2008, 2009 Free Software Foundation
+ * Copyright (C) 2002 Nikos Mavroyanopoulos
*
* This file is part of LIBTASN1.
*
diff --git a/lib/int.h b/lib/int.h
index 65cc10b..a6889f9 100644
--- a/lib/int.h
+++ b/lib/int.h
@@ -1,6 +1,6 @@
/*
- * Copyright (C) 2004, 2006, 2008 Free Software Foundation, Inc.
- * Copyright (C) 2002 Fabio Fiorina
+ * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
+ * Copyright (C) 2002 Fabio Fiorina
*
* This file is part of LIBTASN1.
*
diff --git a/lib/libtasn1.h b/lib/libtasn1.h
index ab839f5..7b304c2 100644
--- a/lib/libtasn1.h
+++ b/lib/libtasn1.h
@@ -1,6 +1,6 @@
/*
- * Copyright (C) 2004, 2005, 2006, 2008 Free Software Foundation
- * Copyright (C) 2002 Fabio Fiorina
+ * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation
+ * Copyright (C) 2002 Fabio Fiorina
*
* This file is part of LIBTASN1.
*
diff --git a/lib/parser_aux.c b/lib/parser_aux.c
index f3bd22a..61bd01b 100644
--- a/lib/parser_aux.c
+++ b/lib/parser_aux.c
@@ -1,6 +1,6 @@
/*
- * Copyright (C) 2004, 2006, 2007, 2008 Free Software Foundation
- * Copyright (C) 2000,2001 Fabio Fiorina
+ * Copyright (C) 2004, 2006, 2007, 2008, 2009 Free Software Foundation
+ * Copyright (C) 2000,2001 Fabio Fiorina
*
* This file is part of LIBTASN1.
*
diff --git a/lib/structure.c b/lib/structure.c
index 2701cf7..8b1bb62 100644
--- a/lib/structure.c
+++ b/lib/structure.c
@@ -1,6 +1,6 @@
/*
- * Copyright (C) 2004, 2006, 2007, 2008 Free Software Foundation
- * Copyright (C) 2002 Fabio Fiorina
+ * Copyright (C) 2004, 2006, 2007, 2008, 2009 Free Software Foundation
+ * Copyright (C) 2002 Fabio Fiorina
*
* This file is part of LIBTASN1.
*
diff --git a/src/Makefile.am b/src/Makefile.am
index 71ffb29..58d8f89 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -1,5 +1,5 @@
## Process this file with automake to produce Makefile.in
-# Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation
+# Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation
#
# This file is part of LIBTASN1.
#
diff --git a/src/asn1Coding.c b/src/asn1Coding.c
index 3fc2ca0..22ea515 100644
--- a/src/asn1Coding.c
+++ b/src/asn1Coding.c
@@ -1,6 +1,6 @@
/*
- * Copyright (C) 2006, 2007, 2008 Free Software Foundation
- * Copyright (C) 2002 Fabio Fiorina
+ * Copyright (C) 2006, 2007, 2008, 2009 Free Software Foundation
+ * Copyright (C) 2002 Fabio Fiorina
*
* This file is part of LIBTASN1.
*
diff --git a/src/asn1Decoding.c b/src/asn1Decoding.c
index dac8eb6..e38b78f 100644
--- a/src/asn1Decoding.c
+++ b/src/asn1Decoding.c
@@ -1,6 +1,6 @@
/*
- * Copyright (C) 2006, 2007, 2008 Free Software Foundation
- * Copyright (C) 2002 Fabio Fiorina
+ * Copyright (C) 2006, 2007, 2008, 2009 Free Software Foundation
+ * Copyright (C) 2002 Fabio Fiorina
*
* This file is part of LIBTASN1.
*
@@ -23,7 +23,7 @@
/*****************************************************/
/* File: asn1Deoding.c */
/* Description: program to generate an ASN1 type from*/
-/* a DER coding. */
+/* a DER coding. */
/*****************************************************/
#include <config.h>
diff --git a/src/asn1Parser.c b/src/asn1Parser.c
index f667d8c..61923c3 100644
--- a/src/asn1Parser.c
+++ b/src/asn1Parser.c
@@ -1,6 +1,6 @@
/*
- * Copyright (C) 2006, 2007 Free Software Foundation
- * Copyright (C) 2002 Fabio Fiorina
+ * Copyright (C) 2006, 2007, 2008, 2009 Free Software Foundation
+ * Copyright (C) 2002 Fabio Fiorina
*
* This file is part of LIBTASN1.
*
@@ -23,7 +23,7 @@
/*****************************************************/
/* File: asn1Parser.c */
/* Description: program to parse a file with ASN1 */
-/* definitions. */
+/* definitions. */
/*****************************************************/
#include <config.h>
diff --git a/tests/Makefile.am b/tests/Makefile.am
index a9c640f..193f365 100644
--- a/tests/Makefile.am
+++ b/tests/Makefile.am
@@ -1,5 +1,5 @@
## Process this file with automake to produce Makefile.in
-# Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation
+# Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation
#
# This file is part of LIBTASN1.
#
diff --git a/tests/Test_encoding.c b/tests/Test_encoding.c
index 166cede..716e378 100644
--- a/tests/Test_encoding.c
+++ b/tests/Test_encoding.c
@@ -1,6 +1,6 @@
/*
- * Copyright (C) 2006, 2007, 2008 Free Software Foundation
- * Copyright (C) 2002 Fabio Fiorina
+ * Copyright (C) 2006, 2007, 2008, 2009 Free Software Foundation
+ * Copyright (C) 2002 Fabio Fiorina
*
* This file is part of LIBTASN1.
*
diff --git a/tests/Test_indefinite.c b/tests/Test_indefinite.c
index 6ef80a7..24484df 100644
--- a/tests/Test_indefinite.c
+++ b/tests/Test_indefinite.c
@@ -1,6 +1,6 @@
/*
- * Copyright (C) 2006, 2007, 2008 Free Software Foundation
- * Copyright (C) 2002 Fabio Fiorina
+ * Copyright (C) 2006, 2007, 2008, 2009 Free Software Foundation
+ * Copyright (C) 2002 Fabio Fiorina
*
* This file is part of LIBTASN1.
*
@@ -23,11 +23,11 @@
/*****************************************************/
/* File: Test_tree.c */
/* Description: Test sequences for these functions: */
-/* asn1_visit_tree, */
-/* asn1_create_structure, */
+/* asn1_visit_tree, */
+/* asn1_create_structure, */
/* asn1_delete_structure, */
-/* asn1_write_value, */
-/* asn1_read_value, */
+/* asn1_write_value, */
+/* asn1_read_value, */
/*****************************************************/
#include <stdio.h>
diff --git a/tests/Test_parser.c b/tests/Test_parser.c
index 518f9dc..398eb31 100644
--- a/tests/Test_parser.c
+++ b/tests/Test_parser.c
@@ -1,6 +1,6 @@
/*
- * Copyright (C) 2006, 2007 Free Software Foundation
- * Copyright (C) 2002 Fabio Fiorina
+ * Copyright (C) 2006, 2007, 2009 Free Software Foundation
+ * Copyright (C) 2002 Fabio Fiorina
*
* This file is part of LIBTASN1.
*
@@ -23,7 +23,7 @@
/*****************************************************/
/* File: Test_parser.c */
/* Description: Test sequences for these functions: */
-/* asn1_parser_asn1, */
+/* asn1_parser_asn1, */
/*****************************************************/
#include <stdio.h>
diff --git a/tests/Test_tree.c b/tests/Test_tree.c
index 644e9e1..47b6294 100644
--- a/tests/Test_tree.c
+++ b/tests/Test_tree.c
@@ -1,6 +1,6 @@
/*
- * Copyright (C) 2006, 2007 Free Software Foundation
- * Copyright (C) 2002 Fabio Fiorina
+ * Copyright (C) 2006, 2007, 2008, 2009 Free Software Foundation
+ * Copyright (C) 2002 Fabio Fiorina
*
* This file is part of LIBTASN1.
*
@@ -23,11 +23,11 @@
/*****************************************************/
/* File: Test_tree.c */
/* Description: Test sequences for these functions: */
-/* asn1_visit_tree, */
-/* asn1_create_structure, */
+/* asn1_visit_tree, */
+/* asn1_create_structure, */
/* asn1_delete_structure, */
-/* asn1_write_value, */
-/* asn1_read_value, */
+/* asn1_write_value, */
+/* asn1_read_value, */
/*****************************************************/
#include <stdio.h>
diff --git a/tests/crlf b/tests/crlf
index ac536f7..b0402c4 100755
--- a/tests/crlf
+++ b/tests/crlf
@@ -1,6 +1,6 @@
#!/bin/sh
-# Copyright (C) 2006, 2007, 2008 Free Software Foundation
+# Copyright (C) 2006, 2007, 2008, 2009 Free Software Foundation
#
# Author: Simon Josefsson
#