summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/Makefile.am3
-rw-r--r--lib/auth_anon.c2
-rw-r--r--lib/auth_cert.c2
-rw-r--r--lib/auth_dh_common.c2
-rw-r--r--lib/auth_dhe.c2
-rw-r--r--lib/auth_rsa.c2
-rw-r--r--lib/auth_rsa_export.c2
-rw-r--r--lib/debug.c2
-rw-r--r--lib/ext_cert_type.c2
-rw-r--r--lib/ext_server_name.c2
-rw-r--r--lib/gnutls_alert.c2
-rw-r--r--lib/gnutls_algorithms.c2
-rw-r--r--lib/gnutls_auth.c2
-rw-r--r--lib/gnutls_buffers.c2
-rw-r--r--lib/gnutls_cert.c2
-rw-r--r--lib/gnutls_cipher.c2
-rw-r--r--lib/gnutls_compress_int.c2
-rw-r--r--lib/gnutls_constate.c2
-rw-r--r--lib/gnutls_datum.c2
-rw-r--r--lib/gnutls_db.c2
-rw-r--r--lib/gnutls_dh.c2
-rw-r--r--lib/gnutls_errors.c2
-rw-r--r--lib/gnutls_extensions.c2
-rw-r--r--lib/gnutls_global.c2
-rw-r--r--lib/gnutls_handshake.c2
-rw-r--r--lib/gnutls_mem.c2
-rw-r--r--lib/gnutls_mpi.c2
-rw-r--r--lib/gnutls_pk.c2
-rw-r--r--lib/gnutls_record.c2
-rw-r--r--lib/gnutls_rsa_export.c2
-rw-r--r--lib/gnutls_state.c2
-rw-r--r--lib/gnutls_ui.c2
-rw-r--r--lib/gnutls_x509.c2
-rw-r--r--lib/x509_extensions.c2
-rw-r--r--lib/x509_sig_check.c2
-rw-r--r--lib/x509_verify.c2
-rw-r--r--lib/x509_xml.c2
37 files changed, 38 insertions, 37 deletions
diff --git a/lib/Makefile.am b/lib/Makefile.am
index f26331ef8b..7d017f1aab 100644
--- a/lib/Makefile.am
+++ b/lib/Makefile.am
@@ -4,9 +4,10 @@ bin_SCRIPTS = libgnutls-config
m4datadir = $(datadir)/aclocal
m4data_DATA = libgnutls.m4
+DIST_SUBDIRS = minitasn1
SUBDIRS = $(MINITASN1_DIR)
-EXTRA_DIST = minitasn1 debug.h gnutls_compress.h defines.h gnutls.asn pkix.asn \
+EXTRA_DIST = debug.h gnutls_compress.h defines.h gnutls.asn pkix.asn \
gnutls_cipher.h gnutls_buffers.h gnutls_errors.h gnutls_int.h \
gnutls_handshake.h gnutls_num.h gnutls_algorithms.h gnutls_dh.h \
gnutls_kx.h gnutls_hash_int.h gnutls_cipher_int.h gnutls_db.h \
diff --git a/lib/auth_anon.c b/lib/auth_anon.c
index 39356ff10f..3dbb96fb81 100644
--- a/lib/auth_anon.c
+++ b/lib/auth_anon.c
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2000,2001,2002 Nikos Mavroyanopoulos
+ * Copyright (C) 2000,2001,2002,2003 Nikos Mavroyanopoulos
*
* This file is part of GNUTLS.
*
diff --git a/lib/auth_cert.c b/lib/auth_cert.c
index 5751e6d3ee..82edbdcc9a 100644
--- a/lib/auth_cert.c
+++ b/lib/auth_cert.c
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2001,2002 Nikos Mavroyanopoulos
+ * Copyright (C) 2001,2002,2003 Nikos Mavroyanopoulos
*
* This file is part of GNUTLS.
*
diff --git a/lib/auth_dh_common.c b/lib/auth_dh_common.c
index 586481eba3..c755094947 100644
--- a/lib/auth_dh_common.c
+++ b/lib/auth_dh_common.c
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2002 Nikos Mavroyanopoulos
+ * Copyright (C) 2002,2003 Nikos Mavroyanopoulos
*
* This file is part of GNUTLS.
*
diff --git a/lib/auth_dhe.c b/lib/auth_dhe.c
index cdc7afb48d..6a8520033e 100644
--- a/lib/auth_dhe.c
+++ b/lib/auth_dhe.c
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2000,2001,2002 Nikos Mavroyanopoulos
+ * Copyright (C) 2000,2001,2002,2003 Nikos Mavroyanopoulos
*
* This file is part of GNUTLS.
*
diff --git a/lib/auth_rsa.c b/lib/auth_rsa.c
index 5baa728ccd..536f43b95e 100644
--- a/lib/auth_rsa.c
+++ b/lib/auth_rsa.c
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2000,2001,2002 Nikos Mavroyanopoulos
+ * Copyright (C) 2000,2001,2002,2003 Nikos Mavroyanopoulos
*
* This file is part of GNUTLS.
*
diff --git a/lib/auth_rsa_export.c b/lib/auth_rsa_export.c
index 58dbdf6077..e251d1dea8 100644
--- a/lib/auth_rsa_export.c
+++ b/lib/auth_rsa_export.c
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2000,2001,2002 Nikos Mavroyanopoulos
+ * Copyright (C) 2000,2001,2002,2003 Nikos Mavroyanopoulos
*
* This file is part of GNUTLS.
*
diff --git a/lib/debug.c b/lib/debug.c
index 18e9a1f137..96a6c32fba 100644
--- a/lib/debug.c
+++ b/lib/debug.c
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2000,2002 Nikos Mavroyanopoulos
+ * Copyright (C) 2000,2002,2003 Nikos Mavroyanopoulos
*
* This file is part of GNUTLS.
*
diff --git a/lib/ext_cert_type.c b/lib/ext_cert_type.c
index ced53b9173..e9683e3768 100644
--- a/lib/ext_cert_type.c
+++ b/lib/ext_cert_type.c
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2002 Nikos Mavroyanopoulos
+ * Copyright (C) 2002,2003 Nikos Mavroyanopoulos
*
* This file is part of GNUTLS.
*
diff --git a/lib/ext_server_name.c b/lib/ext_server_name.c
index e6c481858f..4855f868c1 100644
--- a/lib/ext_server_name.c
+++ b/lib/ext_server_name.c
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2002 Nikos Mavroyanopoulos
+ * Copyright (C) 2002,2003 Nikos Mavroyanopoulos
*
* This file is part of GNUTLS.
*
diff --git a/lib/gnutls_alert.c b/lib/gnutls_alert.c
index 058c8579ba..e7d8269451 100644
--- a/lib/gnutls_alert.c
+++ b/lib/gnutls_alert.c
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2000,2001,2002 Nikos Mavroyanopoulos
+ * Copyright (C) 2000,2001,2002,2003 Nikos Mavroyanopoulos
*
* This file is part of GNUTLS.
*
diff --git a/lib/gnutls_algorithms.c b/lib/gnutls_algorithms.c
index e2e6ca780e..9173c10aad 100644
--- a/lib/gnutls_algorithms.c
+++ b/lib/gnutls_algorithms.c
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2000,2002 Nikos Mavroyanopoulos
+ * Copyright (C) 2000,2002,2003 Nikos Mavroyanopoulos
*
* This file is part of GNUTLS.
*
diff --git a/lib/gnutls_auth.c b/lib/gnutls_auth.c
index b669c6c1b4..e497fca0f5 100644
--- a/lib/gnutls_auth.c
+++ b/lib/gnutls_auth.c
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2001,2002 Nikos Mavroyanopoulos
+ * Copyright (C) 2001,2002,2003 Nikos Mavroyanopoulos
*
* This file is part of GNUTLS.
*
diff --git a/lib/gnutls_buffers.c b/lib/gnutls_buffers.c
index 07400a478d..c3029978a2 100644
--- a/lib/gnutls_buffers.c
+++ b/lib/gnutls_buffers.c
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2000,2001,2002 Nikos Mavroyanopoulos
+ * Copyright (C) 2000,2001,2002,2003 Nikos Mavroyanopoulos
*
* This file is part of GNUTLS.
*
diff --git a/lib/gnutls_cert.c b/lib/gnutls_cert.c
index 26248ff514..f34b701cea 100644
--- a/lib/gnutls_cert.c
+++ b/lib/gnutls_cert.c
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2001,2002 Nikos Mavroyanopoulos
+ * Copyright (C) 2001,2002,2003 Nikos Mavroyanopoulos
*
* This file is part of GNUTLS.
*
diff --git a/lib/gnutls_cipher.c b/lib/gnutls_cipher.c
index 56ee62d60e..dd7c7dbbe7 100644
--- a/lib/gnutls_cipher.c
+++ b/lib/gnutls_cipher.c
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2000,2001,2002 Nikos Mavroyanopoulos
+ * Copyright (C) 2000,2001,2002,2003 Nikos Mavroyanopoulos
*
* This file is part of GNUTLS.
*
diff --git a/lib/gnutls_compress_int.c b/lib/gnutls_compress_int.c
index 8184a9da2e..3c7bb98b5c 100644
--- a/lib/gnutls_compress_int.c
+++ b/lib/gnutls_compress_int.c
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2000,2002 Nikos Mavroyanopoulos
+ * Copyright (C) 2000,2002,2003 Nikos Mavroyanopoulos
*
* This file is part of GNUTLS.
*
diff --git a/lib/gnutls_constate.c b/lib/gnutls_constate.c
index 1629d8526f..4d49af2440 100644
--- a/lib/gnutls_constate.c
+++ b/lib/gnutls_constate.c
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2001,2002 Nikos Mavroyanopoulos
+ * Copyright (C) 2001,2002,2003 Nikos Mavroyanopoulos
*
* This file is part of GNUTLS.
*
diff --git a/lib/gnutls_datum.c b/lib/gnutls_datum.c
index 5d77cd0b01..b871ad09f1 100644
--- a/lib/gnutls_datum.c
+++ b/lib/gnutls_datum.c
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2001,2002 Nikos Mavroyanopoulos
+ * Copyright (C) 2001,2002,2003 Nikos Mavroyanopoulos
*
* This file is part of GNUTLS.
*
diff --git a/lib/gnutls_db.c b/lib/gnutls_db.c
index 3a67bdca61..d8d8690d30 100644
--- a/lib/gnutls_db.c
+++ b/lib/gnutls_db.c
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2000,2002 Nikos Mavroyanopoulos
+ * Copyright (C) 2000,2002,2003 Nikos Mavroyanopoulos
*
* This file is part of GNUTLS.
*
diff --git a/lib/gnutls_dh.c b/lib/gnutls_dh.c
index f83754a6d5..cd030f7984 100644
--- a/lib/gnutls_dh.c
+++ b/lib/gnutls_dh.c
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2000,2001,2002 Nikos Mavroyanopoulos
+ * Copyright (C) 2000,2001,2002,2003 Nikos Mavroyanopoulos
*
* This file is part of GNUTLS.
* someday was part of gsti
diff --git a/lib/gnutls_errors.c b/lib/gnutls_errors.c
index af17f2e622..94c7872782 100644
--- a/lib/gnutls_errors.c
+++ b/lib/gnutls_errors.c
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2000,2001,2002 Nikos Mavroyanopoulos
+ * Copyright (C) 2000,2001,2002,2003 Nikos Mavroyanopoulos
*
* This file is part of GNUTLS.
*
diff --git a/lib/gnutls_extensions.c b/lib/gnutls_extensions.c
index 47010e4c8d..01af8fa844 100644
--- a/lib/gnutls_extensions.c
+++ b/lib/gnutls_extensions.c
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2001,2002 Nikos Mavroyanopoulos
+ * Copyright (C) 2001,2002,2003 Nikos Mavroyanopoulos
*
* This file is part of GNUTLS.
*
diff --git a/lib/gnutls_global.c b/lib/gnutls_global.c
index 32a67af374..1f8e6b785d 100644
--- a/lib/gnutls_global.c
+++ b/lib/gnutls_global.c
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2001,2002 Nikos Mavroyanopoulos
+ * Copyright (C) 2001,2002,2003 Nikos Mavroyanopoulos
*
* This file is part of GNUTLS.
*
diff --git a/lib/gnutls_handshake.c b/lib/gnutls_handshake.c
index 3199350d84..506dab7104 100644
--- a/lib/gnutls_handshake.c
+++ b/lib/gnutls_handshake.c
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2000,2001,2002 Nikos Mavroyanopoulos
+ * Copyright (C) 2000,2001,2002,2003 Nikos Mavroyanopoulos
*
* This file is part of GNUTLS.
*
diff --git a/lib/gnutls_mem.c b/lib/gnutls_mem.c
index 78840a2682..0b997cfad3 100644
--- a/lib/gnutls_mem.c
+++ b/lib/gnutls_mem.c
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2001,2002 Nikos Mavroyanopoulos
+ * Copyright (C) 2001,2002,2003 Nikos Mavroyanopoulos
*
* This file is part of GNUTLS.
*
diff --git a/lib/gnutls_mpi.c b/lib/gnutls_mpi.c
index 1b27f172fa..eac9612614 100644
--- a/lib/gnutls_mpi.c
+++ b/lib/gnutls_mpi.c
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2001,2002 Nikos Mavroyanopoulos
+ * Copyright (C) 2001,2002,2003 Nikos Mavroyanopoulos
*
* This file is part of GNUTLS.
*
diff --git a/lib/gnutls_pk.c b/lib/gnutls_pk.c
index 7dd4edad7c..9db3f2e6cd 100644
--- a/lib/gnutls_pk.c
+++ b/lib/gnutls_pk.c
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2001,2002 Nikos Mavroyanopoulos
+ * Copyright (C) 2001,2002,2003 Nikos Mavroyanopoulos
*
* This file is part of GNUTLS.
*
diff --git a/lib/gnutls_record.c b/lib/gnutls_record.c
index 9628fa0967..e74db7b469 100644
--- a/lib/gnutls_record.c
+++ b/lib/gnutls_record.c
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2000,2001,2002 Nikos Mavroyanopoulos
+ * Copyright (C) 2000,2001,2002,2003 Nikos Mavroyanopoulos
*
* This file is part of GNUTLS.
*
diff --git a/lib/gnutls_rsa_export.c b/lib/gnutls_rsa_export.c
index 6018014998..6f2d74589a 100644
--- a/lib/gnutls_rsa_export.c
+++ b/lib/gnutls_rsa_export.c
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2002 Nikos Mavroyanopoulos
+ * Copyright (C) 2002,2003 Nikos Mavroyanopoulos
*
* This file is part of GNUTLS.
*
diff --git a/lib/gnutls_state.c b/lib/gnutls_state.c
index 950916b823..70610e0dec 100644
--- a/lib/gnutls_state.c
+++ b/lib/gnutls_state.c
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2002 Nikos Mavroyanopoulos
+ * Copyright (C) 2002,2003 Nikos Mavroyanopoulos
*
* This file is part of GNUTLS.
*
diff --git a/lib/gnutls_ui.c b/lib/gnutls_ui.c
index 6e59b94fcb..8184d2916a 100644
--- a/lib/gnutls_ui.c
+++ b/lib/gnutls_ui.c
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2001,2002 Nikos Mavroyanopoulos
+ * Copyright (C) 2001,2002,2003 Nikos Mavroyanopoulos
*
* This file is part of GNUTLS.
*
diff --git a/lib/gnutls_x509.c b/lib/gnutls_x509.c
index 0a2daa8022..78320b531a 100644
--- a/lib/gnutls_x509.c
+++ b/lib/gnutls_x509.c
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2002 Nikos Mavroyanopoulos
+ * Copyright (C) 2002,2003 Nikos Mavroyanopoulos
*
* This file is part of GNUTLS.
*
diff --git a/lib/x509_extensions.c b/lib/x509_extensions.c
index 5393a799cf..9232a5e741 100644
--- a/lib/x509_extensions.c
+++ b/lib/x509_extensions.c
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2001,2002 Nikos Mavroyanopoulos
+ * Copyright (C) 2001,2002,2003 Nikos Mavroyanopoulos
*
* This file is part of GNUTLS.
*
diff --git a/lib/x509_sig_check.c b/lib/x509_sig_check.c
index 8458b91cb4..2025a1e951 100644
--- a/lib/x509_sig_check.c
+++ b/lib/x509_sig_check.c
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2001,2002 Nikos Mavroyanopoulos
+ * Copyright (C) 2001,2002,2003 Nikos Mavroyanopoulos
*
* This file is part of GNUTLS.
*
diff --git a/lib/x509_verify.c b/lib/x509_verify.c
index fd6e77e54f..8681df263e 100644
--- a/lib/x509_verify.c
+++ b/lib/x509_verify.c
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2001,2002 Nikos Mavroyanopoulos <nmav@hellug.gr>
+ * Copyright (C) 2001,2002,2003 Nikos Mavroyanopoulos <nmav@hellug.gr>
*
* This file is part of GNUTLS.
*
diff --git a/lib/x509_xml.c b/lib/x509_xml.c
index 6a6370cc88..d7e8cec4e7 100644
--- a/lib/x509_xml.c
+++ b/lib/x509_xml.c
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2002 Nikos Mavroyanopoulos
+ * Copyright (C) 2002,2003 Nikos Mavroyanopoulos
*
* This file is part of GNUTLS.
*