summaryrefslogtreecommitdiff
path: root/src/common
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2005-04-01 20:15:56 +0000
committerNick Mathewson <nickm@torproject.org>2005-04-01 20:15:56 +0000
commit0e81265359514e767e732f790dd7b82e7cb3e002 (patch)
tree8eff685b8a5a222cf742d73428ff2d18abcee06a /src/common
parent34944f3eb10eb25ece93a257493020bf4d8f95b8 (diff)
downloadtor-0e81265359514e767e732f790dd7b82e7cb3e002.tar.gz
tor-0e81265359514e767e732f790dd7b82e7cb3e002.zip
update copyright notices.
svn:r3982
Diffstat (limited to 'src/common')
-rw-r--r--src/common/aes.c3
-rw-r--r--src/common/aes.h3
-rw-r--r--src/common/compat.c3
-rw-r--r--src/common/compat.h3
-rw-r--r--src/common/container.c3
-rw-r--r--src/common/container.h3
-rw-r--r--src/common/crypto.c3
-rw-r--r--src/common/crypto.h3
-rw-r--r--src/common/log.c3
-rw-r--r--src/common/log.h3
-rw-r--r--src/common/test.h3
-rw-r--r--src/common/torgzip.c1
-rw-r--r--src/common/torgzip.h3
-rw-r--r--src/common/torint.h3
-rw-r--r--src/common/tortls.c3
-rw-r--r--src/common/tortls.h3
-rw-r--r--src/common/util.c3
-rw-r--r--src/common/util.h3
18 files changed, 35 insertions, 17 deletions
diff --git a/src/common/aes.c b/src/common/aes.c
index 5ec6fb3c2e..c1e05f1009 100644
--- a/src/common/aes.c
+++ b/src/common/aes.c
@@ -1,4 +1,5 @@
-/* Copyright 2001,2002,2003 Roger Dingledine, Matej Pfajfar. */
+/* Copyright 2001,2002,2003 Roger Dingledine, Matej Pfajfar.
+ * Copyright 2004-2005 Roger Dingledine, Nick Mathewson */
/* See LICENSE for licensing information */
/* $Id$ */
const char aes_c_id[] = "$Id$";
diff --git a/src/common/aes.h b/src/common/aes.h
index bd046cf096..4afed2314d 100644
--- a/src/common/aes.h
+++ b/src/common/aes.h
@@ -1,4 +1,5 @@
-/* Copyright 2003 Roger Dingledine */
+/* Copyright 2003 Roger Dingledine
+ * Copyright 2004-2005 Roger Dingledine, Nick Mathewson */
/* See LICENSE for licensing information */
/* $Id$ */
diff --git a/src/common/compat.c b/src/common/compat.c
index fd08743c00..c1366a91a3 100644
--- a/src/common/compat.c
+++ b/src/common/compat.c
@@ -1,4 +1,5 @@
-/* Copyright 2003-2004 Roger Dingledine; Copyright 2004 Nick Mathewson */
+/* Copyright 2003-2004 Roger Dingledine
+ * Copyright 2004-2005 Roger Dingledine, Nick Mathewson */
/* See LICENSE for licensing information */
/* $Id$ */
const char compat_c_id[] = "$Id$";
diff --git a/src/common/compat.h b/src/common/compat.h
index 04ca605df0..87e100c121 100644
--- a/src/common/compat.h
+++ b/src/common/compat.h
@@ -1,4 +1,5 @@
-/* Copyright 2003-2004 Roger Dingledine; Copyright 2004 Nick Mathewson */
+/* Copyright 2003-2004 Roger Dingledinex
+ * Copyright 2004-2005 Roger Dingledine, Nick Mathewson */
/* See LICENSE for licensing information */
/* $Id$ */
diff --git a/src/common/container.c b/src/common/container.c
index 8b07ac0744..33df51f5b3 100644
--- a/src/common/container.c
+++ b/src/common/container.c
@@ -1,4 +1,5 @@
-/* Copyright 2003-2004 Roger Dingledine; Copyright 2004 Nick Mathewson */
+/* Copyright 2003-2004 Roger Dingledine
+ Copyright 2004-2005 Roger Dingledine, Nick Mathewson */
/* See LICENSE for licensing information */
/* $Id$ */
const char container_c_id[] = "$Id$";
diff --git a/src/common/container.h b/src/common/container.h
index 352433272a..f003c03d5a 100644
--- a/src/common/container.h
+++ b/src/common/container.h
@@ -1,4 +1,5 @@
-/* Copyright 2003-2004 Roger Dingledine; Copyright 2004 Nick Mathewson */
+/* Copyright 2003-2004 Roger Dingledine
+ * Copyright 2004-2005 Roger Dingledine, Nick Mathewson */
/* See LICENSE for licensing information */
/* $Id$ */
diff --git a/src/common/crypto.c b/src/common/crypto.c
index 14ffe3cfa9..91af2d58d6 100644
--- a/src/common/crypto.c
+++ b/src/common/crypto.c
@@ -1,4 +1,5 @@
-/* Copyright 2001,2002,2003 Roger Dingledine, Matej Pfajfar. */
+/* Copyright 2001,2002,2003 Roger Dingledine, Matej Pfajfar.
+ * Copyright 2004-2005 Roger Dingledine, Nick Mathewson */
/* See LICENSE for licensing information */
/* $Id$ */
const char crypto_c_id[] = "$Id$";
diff --git a/src/common/crypto.h b/src/common/crypto.h
index eb3998505f..9a4fabd1c0 100644
--- a/src/common/crypto.h
+++ b/src/common/crypto.h
@@ -1,4 +1,5 @@
-/* Copyright 2001,2002,2003 Roger Dingledine, Matej Pfajfar. */
+/* Copyright 2001,2002,2003 Roger Dingledine, Matej Pfajfar.
+ * Copyright 2004-2005 Roger Dingledine, Nick Mathewson */
/* See LICENSE for licensing information */
/* $Id$ */
diff --git a/src/common/log.c b/src/common/log.c
index cfab09368a..863f18b69f 100644
--- a/src/common/log.c
+++ b/src/common/log.c
@@ -1,4 +1,5 @@
-/* Copyright 2001,2002,2003 Roger Dingledine, Matej Pfajfar. */
+/* Copyright 2001,2002,2003 Roger Dingledine, Matej Pfajfar.
+ * Copyright 2004-2005 Roger Dingledine, Nick Mathewson */
/* See LICENSE for licensing information */
/* $Id$ */
const char log_c_id[] = "$Id$";
diff --git a/src/common/log.h b/src/common/log.h
index bed936e09c..aa4d7ca91f 100644
--- a/src/common/log.h
+++ b/src/common/log.h
@@ -1,4 +1,5 @@
-/* Copyright 2001,2002,2003 Roger Dingledine, Matej Pfajfar. */
+/* Copyright 2001,2002,2003 Roger Dingledine, Matej Pfajfar.
+ * Copyright 2004-2005 Roger Dingledine, Nick Mathewson */
/* See LICENSE for licensing information */
/* $Id$ */
diff --git a/src/common/test.h b/src/common/test.h
index 12731a53bc..4c51256cc7 100644
--- a/src/common/test.h
+++ b/src/common/test.h
@@ -1,4 +1,5 @@
-/* Copyright 2001,2002,2003 Roger Dingledine. */
+/* Copyright 2001,2002,2003 Roger Dingledine.
+ * Copyright 2004-2005 Roger Dingledine, Nick Mathewson *
/* See LICENSE for licensing information */
/* $Id$ */
diff --git a/src/common/torgzip.c b/src/common/torgzip.c
index e9281ad5ff..23d5dd5a58 100644
--- a/src/common/torgzip.c
+++ b/src/common/torgzip.c
@@ -1,4 +1,5 @@
/* Copyright 2004 Roger Dingledine */
+/* Copyright 2004-2005 Roger Dingledine, Nick Mathewson */
/* See LICENSE for licensing information */
/* $Id$ */
const char torgzip_c_id[] = "$Id$";
diff --git a/src/common/torgzip.h b/src/common/torgzip.h
index d6e070f8ec..a52cc0fb40 100644
--- a/src/common/torgzip.h
+++ b/src/common/torgzip.h
@@ -1,4 +1,5 @@
-/* Copyright 2003 Roger Dingledine */
+/* Copyright 2003 Roger Dingledine
+ * Copyright 2004-2005 Roger Dingledine, Nick Mathewson */
/* See LICENSE for licensing information */
/* $Id$ */
diff --git a/src/common/torint.h b/src/common/torint.h
index 84f6b28dfa..96464a29ad 100644
--- a/src/common/torint.h
+++ b/src/common/torint.h
@@ -1,4 +1,5 @@
-/* Copyright 2003 Roger Dingledine */
+/* Copyright 2003 Roger Dingledine
+ * Copyright 2004-2005 Roger Dingledine, Nick Mathewson */
/* See LICENSE for licensing information */
/* $Id$ */
diff --git a/src/common/tortls.c b/src/common/tortls.c
index 1caaf10d03..4eb4488193 100644
--- a/src/common/tortls.c
+++ b/src/common/tortls.c
@@ -1,4 +1,5 @@
-/* Copyright 2003 Roger Dingledine. */
+/* Copyright 2003 Roger Dingledine.
+ * Copyright 2004-2005 Roger Dingledine, Nick Mathewson */
/* See LICENSE for licensing information */
/* $Id$ */
const char tortls_c_id[] = "$Id$";
diff --git a/src/common/tortls.h b/src/common/tortls.h
index 8f5fb773c4..2d568a9807 100644
--- a/src/common/tortls.h
+++ b/src/common/tortls.h
@@ -1,4 +1,5 @@
-/* Copyright 2003 Roger Dingledine */
+/* Copyright 2003 Roger Dingledine
+ * Copyright 2004-2005 Roger Dingledine, Nick Mathewson */
/* See LICENSE for licensing information */
/* $Id$ */
diff --git a/src/common/util.c b/src/common/util.c
index efc25cf5ba..09409e7016 100644
--- a/src/common/util.c
+++ b/src/common/util.c
@@ -1,4 +1,5 @@
-/* Copyright 2003 Roger Dingledine */
+/* Copyright 2003 Roger Dingledine
+ * Copyright 2004-2005 Roger Dingledine, Nick Mathewson */
/* See LICENSE for licensing information */
/* $Id$ */
const char util_c_id[] = "$Id$";
diff --git a/src/common/util.h b/src/common/util.h
index 65c0f105ae..6f23e219a6 100644
--- a/src/common/util.h
+++ b/src/common/util.h
@@ -1,4 +1,5 @@
-/* Copyright 2003-2004 Roger Dingledine; Copyright 2004 Nick Mathewson */
+/* Copyright 2003-2004 Roger Dingledine
+ * Copyright 2004-2005 Roger Dingledine, Nick Mathewson */
/* See LICENSE for licensing information */
/* $Id$ */