summaryrefslogtreecommitdiffstats
path: root/common
diff options
context:
space:
mode:
authorDavid Sommerseth <dazo@users.sourceforge.net>2010-05-25 15:17:38 +0200
committerDavid Sommerseth <dazo@users.sourceforge.net>2010-07-30 11:02:54 +0200
commit430758cb6c263576ddcf3bcae27ed253df973daa (patch)
treebe9e8ea1e1211d951b4182d59dee3e6b7b8c6936 /common
parentf6aed3aee0c89d07bf7ad81d3c4599eb03c9b2f1 (diff)
downloadeurephia-430758cb6c263576ddcf3bcae27ed253df973daa.tar.gz
eurephia-430758cb6c263576ddcf3bcae27ed253df973daa.tar.xz
eurephia-430758cb6c263576ddcf3bcae27ed253df973daa.zip
Updated Copyright dates to include 2010
Diffstat (limited to 'common')
-rw-r--r--common/CMakeLists.txt2
-rw-r--r--common/certinfo.c2
-rw-r--r--common/certinfo.h2
-rw-r--r--common/eurephia_context.h2
-rw-r--r--common/eurephia_directions.h2
-rw-r--r--common/eurephia_getsym.c2
-rw-r--r--common/eurephia_getsym.h2
-rw-r--r--common/eurephia_log.c2
-rw-r--r--common/eurephia_log.h2
-rw-r--r--common/eurephia_log_struct.h2
-rw-r--r--common/eurephia_nullsafe.c2
-rw-r--r--common/eurephia_nullsafe.h2
-rw-r--r--common/eurephia_values.c2
-rw-r--r--common/eurephia_values.h2
-rw-r--r--common/eurephia_values_struct.h2
-rw-r--r--common/eurephia_xml.c2
-rw-r--r--common/eurephia_xml.h2
-rw-r--r--common/eurephiadb_session_common.c2
-rw-r--r--common/eurephiadb_session_common.h2
-rw-r--r--common/eurephiadb_session_struct.h2
-rw-r--r--common/passwd.c2
-rw-r--r--common/passwd.h2
-rw-r--r--common/randstr.c2
-rw-r--r--common/randstr.h2
24 files changed, 24 insertions, 24 deletions
diff --git a/common/CMakeLists.txt b/common/CMakeLists.txt
index 3232e7e..9fcf8da 100644
--- a/common/CMakeLists.txt
+++ b/common/CMakeLists.txt
@@ -1,6 +1,6 @@
# cmake rules for eurephia - common static library
#
-# GPLv2 only - Copyright (C) 2008-2009
+# GPLv2 only - Copyright (C) 2008 - 2010
# David Sommerseth <dazo@users.sourceforge.net>
#
# This program is free software; you can redistribute it and/or
diff --git a/common/certinfo.c b/common/certinfo.c
index f63b783..baddc22 100644
--- a/common/certinfo.c
+++ b/common/certinfo.c
@@ -1,6 +1,6 @@
/* certinfo.c -- Functions to parse and process the X509 TLS id string
*
- * GPLv2 only - Copyright (C) 2008
+ * GPLv2 only - Copyright (C) 2008 - 2010
* David Sommerseth <dazo@users.sourceforge.net>
*
* This program is free software; you can redistribute it and/or
diff --git a/common/certinfo.h b/common/certinfo.h
index b180f77..2563fc9 100644
--- a/common/certinfo.h
+++ b/common/certinfo.h
@@ -1,6 +1,6 @@
/* certinfo.h -- Structure used when parsing X509 identification string
*
- * GPLv2 only - Copyright (C) 2008
+ * GPLv2 only - Copyright (C) 2008 - 2010
* David Sommerseth <dazo@users.sourceforge.net>
*
* This program is free software; you can redistribute it and/or
diff --git a/common/eurephia_context.h b/common/eurephia_context.h
index 5c7efc8..e323c45 100644
--- a/common/eurephia_context.h
+++ b/common/eurephia_context.h
@@ -1,6 +1,6 @@
/* eurephia_context.h -- eurephiaCTX definition
*
- * GPLv2 only - Copyright (C) 2008
+ * GPLv2 only - Copyright (C) 2008 - 2010
* David Sommerseth <dazo@users.sourceforge.net>
*
* This program is free software; you can redistribute it and/or
diff --git a/common/eurephia_directions.h b/common/eurephia_directions.h
index fa2adba..e1c4551 100644
--- a/common/eurephia_directions.h
+++ b/common/eurephia_directions.h
@@ -1,6 +1,6 @@
/* eurephia_directions.h -- Macro to decide the best search directon on dual-way pointer chains
*
- * GPLv2 only - Copyright (C) 2008
+ * GPLv2 only - Copyright (C) 2008 - 2010
* David Sommerseth <dazo@users.sourceforge.net>
*
* This program is free software; you can redistribute it and/or
diff --git a/common/eurephia_getsym.c b/common/eurephia_getsym.c
index 3b2b4f8..d7268ff 100644
--- a/common/eurephia_getsym.c
+++ b/common/eurephia_getsym.c
@@ -1,6 +1,6 @@
/* eurephia_getsym.c -- Retrieves symbols from dlopened libraries
*
- * GPLv2 only - Copyright (C) 2008
+ * GPLv2 only - Copyright (C) 2008 - 2010
* David Sommerseth <dazo@users.sourceforge.net>
*
* This program is free software; you can redistribute it and/or
diff --git a/common/eurephia_getsym.h b/common/eurephia_getsym.h
index b2c8f60..f921646 100644
--- a/common/eurephia_getsym.h
+++ b/common/eurephia_getsym.h
@@ -1,6 +1,6 @@
/* eurephia_getsym.h -- Retrieves symbols from dlopened libraries
*
- * GPLv2 only - Copyright (C) 2008
+ * GPLv2 only - Copyright (C) 2008 - 2010
* David Sommerseth <dazo@users.sourceforge.net>
*
* This program is free software; you can redistribute it and/or
diff --git a/common/eurephia_log.c b/common/eurephia_log.c
index aa80c07..7c4ace6 100644
--- a/common/eurephia_log.c
+++ b/common/eurephia_log.c
@@ -1,6 +1,6 @@
/* eurephia_log.c -- eurephia logging
*
- * GPLv2 only - Copyright (C) 2008
+ * GPLv2 only - Copyright (C) 2008 - 2010
* David Sommerseth <dazo@users.sourceforge.net>
*
* This program is free software; you can redistribute it and/or
diff --git a/common/eurephia_log.h b/common/eurephia_log.h
index d059735..ac81958 100644
--- a/common/eurephia_log.h
+++ b/common/eurephia_log.h
@@ -1,6 +1,6 @@
/* eurephia_log.h -- eurephia logging module
*
- * GPLv2 only - Copyright (C) 2008
+ * GPLv2 only - Copyright (C) 2008 - 2010
* David Sommerseth <dazo@users.sourceforge.net>
*
* This program is free software; you can redistribute it and/or
diff --git a/common/eurephia_log_struct.h b/common/eurephia_log_struct.h
index babd5d2..8790797 100644
--- a/common/eurephia_log_struct.h
+++ b/common/eurephia_log_struct.h
@@ -1,6 +1,6 @@
/* eurephia_log.h -- eurephia log struct definition
*
- * GPLv2 only - Copyright (C) 2009
+ * GPLv2 only - Copyright (C) 2009 - 2010
* David Sommerseth <dazo@users.sourceforge.net>
*
* This program is free software; you can redistribute it and/or
diff --git a/common/eurephia_nullsafe.c b/common/eurephia_nullsafe.c
index 17b808a..d466ab8 100644
--- a/common/eurephia_nullsafe.c
+++ b/common/eurephia_nullsafe.c
@@ -3,7 +3,7 @@
* standard C string functions, which is made NULL safe by checking
* if input value is NULL before performing the action.
*
- * GPLv2 only - Copyright (C) 2009
+ * GPLv2 only - Copyright (C) 2009 - 2010
* David Sommerseth <dazo@users.sourceforge.net>
*
* This program is free software; you can redistribute it and/or
diff --git a/common/eurephia_nullsafe.h b/common/eurephia_nullsafe.h
index 5249c19..7a765df 100644
--- a/common/eurephia_nullsafe.h
+++ b/common/eurephia_nullsafe.h
@@ -3,7 +3,7 @@
* standard C string functions, which is made NULL safe by checking
* if input value is NULL before performing the action.
*
- * GPLv2 only - Copyright (C) 2008, 2009
+ * GPLv2 only - Copyright (C) 2008 - 2010
* David Sommerseth <dazo@users.sourceforge.net>
*
* This program is free software; you can redistribute it and/or
diff --git a/common/eurephia_values.c b/common/eurephia_values.c
index 5427136..73205e2 100644
--- a/common/eurephia_values.c
+++ b/common/eurephia_values.c
@@ -1,6 +1,6 @@
/* eurephia_values.c -- Generic interface for processing key->value pairs
*
- * GPLv2 only - Copyright (C) 2008
+ * GPLv2 only - Copyright (C) 2008 - 2010
* David Sommerseth <dazo@users.sourceforge.net>
*
* This program is free software; you can redistribute it and/or
diff --git a/common/eurephia_values.h b/common/eurephia_values.h
index 94f6d63..ce91711 100644
--- a/common/eurephia_values.h
+++ b/common/eurephia_values.h
@@ -1,6 +1,6 @@
/* eurephia_values.h -- Generic interface for processing key->value pairs
*
- * GPLv2 only - Copyright (C) 2008
+ * GPLv2 only - Copyright (C) 2008 - 2010
* David Sommerseth <dazo@users.sourceforge.net>
*
* This program is free software; you can redistribute it and/or
diff --git a/common/eurephia_values_struct.h b/common/eurephia_values_struct.h
index 6fb82fc..94f21fe 100644
--- a/common/eurephia_values_struct.h
+++ b/common/eurephia_values_struct.h
@@ -1,6 +1,6 @@
/* eurephia_values.h -- eurephiaVALUES struct typedef
*
- * GPLv2 only - Copyright (C) 2008
+ * GPLv2 only - Copyright (C) 2008 - 2010
* David Sommerseth <dazo@users.sourceforge.net>
*
* This program is free software; you can redistribute it and/or
diff --git a/common/eurephia_xml.c b/common/eurephia_xml.c
index dec397f..ae23552 100644
--- a/common/eurephia_xml.c
+++ b/common/eurephia_xml.c
@@ -1,6 +1,6 @@
/* eurephia_xml.c -- Generic helper functions for XML parsing
*
- * GPLv2 only - Copyright (C) 2008, 2009
+ * GPLv2 only - Copyright (C) 2008 - 2010
* David Sommerseth <dazo@users.sourceforge.net>
*
* This program is free software; you can redistribute it and/or
diff --git a/common/eurephia_xml.h b/common/eurephia_xml.h
index 083a881..0681b3d 100644
--- a/common/eurephia_xml.h
+++ b/common/eurephia_xml.h
@@ -1,6 +1,6 @@
/* eurephia_xml.h -- Generic helper functions for XML parsing
*
- * GPLv2 only - Copyright (C) 2008
+ * GPLv2 only - Copyright (C) 2008 - 2010
* David Sommerseth <dazo@users.sourceforge.net>
*
* This program is free software; you can redistribute it and/or
diff --git a/common/eurephiadb_session_common.c b/common/eurephiadb_session_common.c
index 9fe36f4..ba145cf 100644
--- a/common/eurephiadb_session_common.c
+++ b/common/eurephiadb_session_common.c
@@ -1,6 +1,6 @@
/* eurephiadb_session_common.c -- Common function for handling sessions
*
- * GPLv2 only - Copyright (C) 2008
+ * GPLv2 only - Copyright (C) 2008 - 2010
* David Sommerseth <dazo@users.sourceforge.net>
*
* This program is free software; you can redistribute it and/or
diff --git a/common/eurephiadb_session_common.h b/common/eurephiadb_session_common.h
index ebe0a75..d7a8384 100644
--- a/common/eurephiadb_session_common.h
+++ b/common/eurephiadb_session_common.h
@@ -1,6 +1,6 @@
/* eurephiadb_session_common.h -- Common function for handling sessions
*
- * GPLv2 only - Copyright (C) 2008
+ * GPLv2 only - Copyright (C) 2008 - 2010
* David Sommerseth <dazo@users.sourceforge.net>
*
* This program is free software; you can redistribute it and/or
diff --git a/common/eurephiadb_session_struct.h b/common/eurephiadb_session_struct.h
index 93ea5e9..e849bb7 100644
--- a/common/eurephiadb_session_struct.h
+++ b/common/eurephiadb_session_struct.h
@@ -1,6 +1,6 @@
/* eurephia_session.h -- eurephiaSESSION struct typedef
*
- * GPLv2 only - Copyright (C) 2008
+ * GPLv2 only - Copyright (C) 2008 - 2010
* David Sommerseth <dazo@users.sourceforge.net>
*
* This program is free software; you can redistribute it and/or
diff --git a/common/passwd.c b/common/passwd.c
index b7c36c4..8a35f55 100644
--- a/common/passwd.c
+++ b/common/passwd.c
@@ -7,7 +7,7 @@
*
* http://people.redhat.com/drepper/sha-crypt.html
*
- * GPLv2 only - Copyright (C) 2008, 2009
+ * GPLv2 only - Copyright (C) 2008 - 2010
* David Sommerseth <dazo@users.sourceforge.net>
*
* This program is free software; you can redistribute it and/or
diff --git a/common/passwd.h b/common/passwd.h
index 004a803..b7533ac 100644
--- a/common/passwd.h
+++ b/common/passwd.h
@@ -1,6 +1,6 @@
/* passwd.h -- Creates SHA512 hash from a clear text password
*
- * GPLv2 only - Copyright (C) 2008, 2009
+ * GPLv2 only - Copyright (C) 2008 - 2010
* David Sommerseth <dazo@users.sourceforge.net>
*
* This program is free software; you can redistribute it and/or
diff --git a/common/randstr.c b/common/randstr.c
index 6d98897..069623e 100644
--- a/common/randstr.c
+++ b/common/randstr.c
@@ -1,6 +1,6 @@
/* randstr.c -- Functions for getting random data
*
- * GPLv2 only - Copyright (C) 2009
+ * GPLv2 only - Copyright (C) 2009 - 2010
* David Sommerseth <dazo@users.sourceforge.net>
*
* This program is free software; you can redistribute it and/or
diff --git a/common/randstr.h b/common/randstr.h
index cc04f18..7ff86aa 100644
--- a/common/randstr.h
+++ b/common/randstr.h
@@ -1,6 +1,6 @@
/* randstr.h -- Functions for getting random data
*
- * GPLv2 only - Copyright (C) 2009
+ * GPLv2 only - Copyright (C) 2009 - 2010
* David Sommerseth <dazo@users.sourceforge.net>
*
* This program is free software; you can redistribute it and/or