aboutsummaryrefslogtreecommitdiff
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
parent34944f3eb10eb25ece93a257493020bf4d8f95b8 (diff)
downloadtor-0e81265359514e767e732f790dd7b82e7cb3e002.tar
tor-0e81265359514e767e732f790dd7b82e7cb3e002.tar.gz
update copyright notices.
svn:r3982
-rw-r--r--Makefile.am6
-rw-r--r--configure.in4
-rwxr-xr-xcontrib/TorControl.py2
-rw-r--r--contrib/osx/package.sh2
-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
-rw-r--r--src/or/buffers.c2
-rw-r--r--src/or/circuitbuild.c2
-rw-r--r--src/or/circuitlist.c2
-rw-r--r--src/or/circuituse.c2
-rw-r--r--src/or/command.c2
-rw-r--r--src/or/config.c2
-rw-r--r--src/or/connection.c2
-rw-r--r--src/or/connection_edge.c4
-rw-r--r--src/or/connection_or.c2
-rw-r--r--src/or/control.c2
-rw-r--r--src/or/cpuworker.c2
-rw-r--r--src/or/directory.c2
-rw-r--r--src/or/dirserv.c2
-rw-r--r--src/or/dns.c2
-rw-r--r--src/or/hibernate.c2
-rw-r--r--src/or/main.c2
-rw-r--r--src/or/onion.c2
-rw-r--r--src/or/or.h2
-rw-r--r--src/or/relay.c2
-rw-r--r--src/or/rendclient.c2
-rw-r--r--src/or/rendmid.c2
-rw-r--r--src/or/rendservice.c2
-rw-r--r--src/or/rephist.c2
-rw-r--r--src/or/router.c3
-rw-r--r--src/or/routerlist.c2
-rw-r--r--src/or/routerparse.c2
-rw-r--r--src/or/test.c2
-rw-r--r--src/or/tor_main.c3
-rw-r--r--src/tools/tor-resolve.c2
51 files changed, 79 insertions, 49 deletions
diff --git a/Makefile.am b/Makefile.am
index 068c15c0d..184a9d11d 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -1,3 +1,9 @@
+# $Id$
+# Copyright 2002-2004 Roger Dingledine
+# Copyright 2004-2005 Roger Dingledine, Nick Mathewson
+# See LICENSE for licensing information
+
+
AUTOMAKE_OPTIONS = foreign
# else it keeps trying to put COPYING back in
diff --git a/configure.in b/configure.in
index 9ca32f7f6..8a1924364 100644
--- a/configure.in
+++ b/configure.in
@@ -1,3 +1,7 @@
+dnl $Id$
+dnl Copyright 2001-2004 Roger Dingledine
+dnl Copyright 2004-2005 Roger Dingledine, Nick Mathewson
+dnl See LICENSE for licensing information
AC_INIT
AM_INIT_AUTOMAKE(tor, 0.1.0.2-rc)
diff --git a/contrib/TorControl.py b/contrib/TorControl.py
index b7ccbfc5e..9bfe93514 100755
--- a/contrib/TorControl.py
+++ b/contrib/TorControl.py
@@ -1,4 +1,6 @@
#!/usr/bin/python
+# TorControl.py -- Python module to interface with Tor Control interface.
+# Copyright 2005 Nick Mathewson -- See LICENSE for licensing information.
#$Id$
import socket
diff --git a/contrib/osx/package.sh b/contrib/osx/package.sh
index 09779b754..bfb6e3fc7 100644
--- a/contrib/osx/package.sh
+++ b/contrib/osx/package.sh
@@ -1,6 +1,6 @@
#!/bin/sh
# $Id$
-# Copyright 2004 Nick Mathewson.
+# Copyright 2004-2005 Nick Mathewson.
# See LICENSE in Tor distribution for licensing information.
# This script builds a Macintosh OS X metapackage containing 4 packages:
diff --git a/src/common/aes.c b/src/common/aes.c
index 5ec6fb3c2..c1e05f100 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 bd046cf09..4afed2314 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 fd08743c0..c1366a91a 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 04ca605df..87e100c12 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 8b07ac074..33df51f5b 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 352433272..f003c03d5 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 14ffe3cfa..91af2d58d 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 eb3998505..9a4fabd1c 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 cfab09368..863f18b69 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 bed936e09..aa4d7ca91 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 12731a53b..4c51256cc 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 e9281ad5f..23d5dd5a5 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 d6e070f8e..a52cc0fb4 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 84f6b28df..96464a29a 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 1caaf10d0..4eb448819 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 8f5fb773c..2d568a980 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 efc25cf5b..09409e701 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 65c0f105a..6f23e219a 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$ */
diff --git a/src/or/buffers.c b/src/or/buffers.c
index 34ee95d7d..2a4342e3e 100644
--- a/src/or/buffers.c
+++ b/src/or/buffers.c
@@ -1,6 +1,6 @@
/* Copyright 2001 Matej Pfajfar.
* Copyright 2001-2004 Roger Dingledine.
- * Copyright 2004 Roger Dingledine, Nick Mathewson. */
+ * Copyright 2004-2005 Roger Dingledine, Nick Mathewson. */
/* See LICENSE for licensing information */
/* $Id$ */
const char buffers_c_id[] = "$Id$";
diff --git a/src/or/circuitbuild.c b/src/or/circuitbuild.c
index b91281f25..9dced9354 100644
--- a/src/or/circuitbuild.c
+++ b/src/or/circuitbuild.c
@@ -1,6 +1,6 @@
/* Copyright 2001 Matej Pfajfar.
* Copyright 2001-2004 Roger Dingledine.
- * Copyright 2004 Roger Dingledine, Nick Mathewson. */
+ * Copyright 2004-2005 Roger Dingledine, Nick Mathewson. */
/* See LICENSE for licensing information */
/* $Id$ */
const char circuitbuild_c_id[] = "$Id$";
diff --git a/src/or/circuitlist.c b/src/or/circuitlist.c
index 1f08f197f..563e01c19 100644
--- a/src/or/circuitlist.c
+++ b/src/or/circuitlist.c
@@ -1,6 +1,6 @@
/* Copyright 2001 Matej Pfajfar.
* Copyright 2001-2004 Roger Dingledine.
- * Copyright 2004 Roger Dingledine, Nick Mathewson. */
+ * Copyright 2004-2005 Roger Dingledine, Nick Mathewson. */
/* See LICENSE for licensing information */
/* $Id$ */
const char circuitlist_c_id[] = "$Id$";
diff --git a/src/or/circuituse.c b/src/or/circuituse.c
index 255b4a306..91da4ff26 100644
--- a/src/or/circuituse.c
+++ b/src/or/circuituse.c
@@ -1,6 +1,6 @@
/* Copyright 2001 Matej Pfajfar.
* Copyright 2001-2004 Roger Dingledine.
- * Copyright 2004 Roger Dingledine, Nick Mathewson. */
+ * Copyright 2004-2005 Roger Dingledine, Nick Mathewson. */
/* See LICENSE for licensing information */
/* $Id$ */
const char circuituse_c_id[] = "$Id$";
diff --git a/src/or/command.c b/src/or/command.c
index 475bb23c9..a8caed528 100644
--- a/src/or/command.c
+++ b/src/or/command.c
@@ -1,6 +1,6 @@
/* Copyright 2001 Matej Pfajfar.
* Copyright 2001-2004 Roger Dingledine.
- * Copyright 2004 Roger Dingledine, Nick Mathewson. */
+ * Copyright 2004-2005 Roger Dingledine, Nick Mathewson. */
/* See LICENSE for licensing information */
/* $Id$ */
const char command_c_id[] = "$Id$";
diff --git a/src/or/config.c b/src/or/config.c
index d452bc57f..d143d8506 100644
--- a/src/or/config.c
+++ b/src/or/config.c
@@ -1,6 +1,6 @@
/* Copyright 2001 Matej Pfajfar.
* Copyright 2001-2004 Roger Dingledine.
- * Copyright 2004 Roger Dingledine, Nick Mathewson. */
+ * Copyright 2004-2005 Roger Dingledine, Nick Mathewson. */
/* See LICENSE for licensing information */
/* $Id$ */
const char config_c_id[] = "$Id$";
diff --git a/src/or/connection.c b/src/or/connection.c
index df70c6a6b..ee51ef8d9 100644
--- a/src/or/connection.c
+++ b/src/or/connection.c
@@ -1,6 +1,6 @@
/* Copyright 2001 Matej Pfajfar.
* Copyright 2001-2004 Roger Dingledine.
- * Copyright 2004 Roger Dingledine, Nick Mathewson. */
+ * Copyright 2004-2005 Roger Dingledine, Nick Mathewson. */
/* See LICENSE for licensing information */
/* $Id$ */
const char connection_c_id[] = "$Id$";
diff --git a/src/or/connection_edge.c b/src/or/connection_edge.c
index f381f432e..23293819d 100644
--- a/src/or/connection_edge.c
+++ b/src/or/connection_edge.c
@@ -1,6 +1,6 @@
/* Copyright 2001 Matej Pfajfar.
* Copyright 2001-2004 Roger Dingledine.
- * Copyright 2004 Roger Dingledine, Nick Mathewson. */
+ * Copyright 2004-2005 Roger Dingledine, Nick Mathewson. */
/* See LICENSE for licensing information */
/* $Id$ */
const char connection_edge_c_id[] = "$Id$";
@@ -38,7 +38,7 @@ connection_close_unattached_ap(connection_t *conn, int endreason) {
// be defined yet. -RD
if (endreason == END_STREAM_REASON_ALREADY_SOCKS_REPLIED)
log_fn(LOG_WARN,"Bug: stream (marked at %s:%d) sending two socks replies?",
- conn->marked_for_close_file?conn->marked_for_close_file:"",
+ conn->marked_for_close_file?conn->marked_for_close_file:"",
conn->marked_for_close);
if (conn->socks_request->command == SOCKS_COMMAND_CONNECT)
diff --git a/src/or/connection_or.c b/src/or/connection_or.c
index 82c93d09d..79e8a9dee 100644
--- a/src/or/connection_or.c
+++ b/src/or/connection_or.c
@@ -1,6 +1,6 @@
/* Copyright 2001 Matej Pfajfar.
* Copyright 2001-2004 Roger Dingledine.
- * Copyright 2004 Roger Dingledine, Nick Mathewson. */
+ * Copyright 2004-2005 Roger Dingledine, Nick Mathewson. */
/* See LICENSE for licensing information */
/* $Id$ */
const char connection_or_c_id[] = "$Id$";
diff --git a/src/or/control.c b/src/or/control.c
index 71b60804c..b59940734 100644
--- a/src/or/control.c
+++ b/src/or/control.c
@@ -1,4 +1,4 @@
-/* Copyright 2004 Roger Dingledine, Nick Mathewson. */
+/* Copyright 2004-2005 Roger Dingledine, Nick Mathewson. */
/* See LICENSE for licensing information */
/* $Id$ */
const char control_c_id[] = "$Id$";
diff --git a/src/or/cpuworker.c b/src/or/cpuworker.c
index 5b65835ec..b6e8ca6c9 100644
--- a/src/or/cpuworker.c
+++ b/src/or/cpuworker.c
@@ -1,5 +1,5 @@
/* Copyright 2003-2004 Roger Dingledine.
- * Copyright 2004 Roger Dingledine, Nick Mathewson. */
+ * Copyright 2004-2005 Roger Dingledine, Nick Mathewson. */
/* See LICENSE for licensing information */
/* $Id$ */
const char cpuworker_c_id[] = "$Id$";
diff --git a/src/or/directory.c b/src/or/directory.c
index ed6a10cd8..b9a0854cc 100644
--- a/src/or/directory.c
+++ b/src/or/directory.c
@@ -1,5 +1,5 @@
/* Copyright 2001-2004 Roger Dingledine.
- * Copyright 2004 Roger Dingledine, Nick Mathewson. */
+ * Copyright 2004-2005 Roger Dingledine, Nick Mathewson. */
/* See LICENSE for licensing information */
/* $Id$ */
const char directory_c_id[] = "$Id$";
diff --git a/src/or/dirserv.c b/src/or/dirserv.c
index 6eb1499e0..76cb97c6b 100644
--- a/src/or/dirserv.c
+++ b/src/or/dirserv.c
@@ -1,5 +1,5 @@
/* Copyright 2001-2004 Roger Dingledine.
- * Copyright 2004 Roger Dingledine, Nick Mathewson. */
+ * Copyright 2004-2005 Roger Dingledine, Nick Mathewson. */
/* See LICENSE for licensing information */
/* $Id$ */
const char dirserv_c_id[] = "$Id$";
diff --git a/src/or/dns.c b/src/or/dns.c
index 3913ef5df..b595668f5 100644
--- a/src/or/dns.c
+++ b/src/or/dns.c
@@ -1,5 +1,5 @@
/* Copyright 2003-2004 Roger Dingledine.
- * Copyright 2004 Roger Dingledine, Nick Mathewson. */
+ * Copyright 2004-2005 Roger Dingledine, Nick Mathewson. */
/* See LICENSE for licensing information */
/* $Id$ */
const char dns_c_id[] = "$Id$";
diff --git a/src/or/hibernate.c b/src/or/hibernate.c
index b44c03e6f..df3e83bd5 100644
--- a/src/or/hibernate.c
+++ b/src/or/hibernate.c
@@ -1,4 +1,4 @@
-/* Copyright 2004 Roger Dingledine, Nick Mathewson. */
+/* Copyright 2004-2005 Roger Dingledine, Nick Mathewson. */
/* See LICENSE for licensing information */
/* $Id$ */
const char hibernate_c_id[] = "$Id$";
diff --git a/src/or/main.c b/src/or/main.c
index 12d923b9b..393e5a69e 100644
--- a/src/or/main.c
+++ b/src/or/main.c
@@ -1,6 +1,6 @@
/* Copyright 2001 Matej Pfajfar.
* Copyright 2001-2004 Roger Dingledine.
- * Copyright 2004 Roger Dingledine, Nick Mathewson. */
+ * Copyright 2004-2005 Roger Dingledine, Nick Mathewson. */
/* See LICENSE for licensing information */
/* $Id$ */
const char main_c_id[] = "$Id$";
diff --git a/src/or/onion.c b/src/or/onion.c
index 642d63254..4d354abbd 100644
--- a/src/or/onion.c
+++ b/src/or/onion.c
@@ -1,6 +1,6 @@
/* Copyright 2001 Matej Pfajfar.
* Copyright 2001-2004 Roger Dingledine.
- * Copyright 2004 Roger Dingledine, Nick Mathewson. */
+ * Copyright 2004-2005 Roger Dingledine, Nick Mathewson. */
/* See LICENSE for licensing information */
/* $Id$ */
const char onion_c_id[] = "$Id$";
diff --git a/src/or/or.h b/src/or/or.h
index 63b3ea9c5..3b9dcbb48 100644
--- a/src/or/or.h
+++ b/src/or/or.h
@@ -1,6 +1,6 @@
/* Copyright 2001 Matej Pfajfar.
* Copyright 2001-2004 Roger Dingledine.
- * Copyright 2004 Roger Dingledine, Nick Mathewson. */
+ * Copyright 2004-2005 Roger Dingledine, Nick Mathewson. */
/* See LICENSE for licensing information */
/* $Id$ */
diff --git a/src/or/relay.c b/src/or/relay.c
index 4b79f1746..f2523b5a2 100644
--- a/src/or/relay.c
+++ b/src/or/relay.c
@@ -1,6 +1,6 @@
/* Copyright 2001 Matej Pfajfar.
* Copyright 2001-2004 Roger Dingledine.
- * Copyright 2004 Roger Dingledine, Nick Mathewson. */
+ * Copyright 2004-2005 Roger Dingledine, Nick Mathewson. */
/* See LICENSE for licensing information */
/* $Id$ */
const char relay_c_id[] = "$Id$";
diff --git a/src/or/rendclient.c b/src/or/rendclient.c
index b87480266..6791bbd3e 100644
--- a/src/or/rendclient.c
+++ b/src/or/rendclient.c
@@ -1,4 +1,4 @@
-/* Copyright 2004 Roger Dingledine, Nick Mathewson. */
+/* Copyright 2004-2005 Roger Dingledine, Nick Mathewson. */
/* See LICENSE for licensing information */
/* $Id$ */
const char rendclient_c_id[] = "$Id$";
diff --git a/src/or/rendmid.c b/src/or/rendmid.c
index 302a6f011..90881959f 100644
--- a/src/or/rendmid.c
+++ b/src/or/rendmid.c
@@ -1,4 +1,4 @@
-/* Copyright 2004 Roger Dingledine, Nick Mathewson. */
+/* Copyright 2004-2005 Roger Dingledine, Nick Mathewson. */
/* See LICENSE for licensing information */
/* $Id$ */
const char rendmid_c_id[] = "$Id$";
diff --git a/src/or/rendservice.c b/src/or/rendservice.c
index d9f637c39..ae435a229 100644
--- a/src/or/rendservice.c
+++ b/src/or/rendservice.c
@@ -1,4 +1,4 @@
-/* Copyright 2004 Roger Dingledine, Nick Mathewson. */
+/* Copyright 2004-2005 Roger Dingledine, Nick Mathewson. */
/* See LICENSE for licensing information */
/* $Id$ */
const char rendservice_c_id[] = "$Id$";
diff --git a/src/or/rephist.c b/src/or/rephist.c
index bc9861b25..26efd9e62 100644
--- a/src/or/rephist.c
+++ b/src/or/rephist.c
@@ -1,4 +1,4 @@
-/* Copyright 2004 Roger Dingledine, Nick Mathewson. */
+/* Copyright 2004-2005 Roger Dingledine, Nick Mathewson. */
/* See LICENSE for licensing information */
/* $Id$ */
const char rephist_c_id[] = "$Id$";
diff --git a/src/or/router.c b/src/or/router.c
index b30808a96..2e7aa5eff 100644
--- a/src/or/router.c
+++ b/src/or/router.c
@@ -1,6 +1,6 @@
/* Copyright 2001 Matej Pfajfar.
* Copyright 2001-2004 Roger Dingledine.
- * Copyright 2004 Roger Dingledine, Nick Mathewson. */
+ * Copyright 2004-2005 Roger Dingledine, Nick Mathewson. */
/* See LICENSE for licensing information */
/* $Id$ */
const char router_c_id[] = "$Id$";
@@ -614,7 +614,6 @@ int router_compare_to_my_exit_policy(connection_t *conn)
}
-
/** Return true iff <b>router</b> has the same nickname as this OR. (For an
* OP, always returns false.)
*/
diff --git a/src/or/routerlist.c b/src/or/routerlist.c
index c5b99a874..d8dc2873e 100644
--- a/src/or/routerlist.c
+++ b/src/or/routerlist.c
@@ -1,6 +1,6 @@
/* Copyright 2001 Matej Pfajfar.
* Copyright 2001-2004 Roger Dingledine.
- * Copyright 2004 Roger Dingledine, Nick Mathewson. */
+ * Copyright 2004-2005 Roger Dingledine, Nick Mathewson. */
/* See LICENSE for licensing information */
/* $Id$ */
const char routerlist_c_id[] = "$Id$";
diff --git a/src/or/routerparse.c b/src/or/routerparse.c
index 75d91b038..30c6add21 100644
--- a/src/or/routerparse.c
+++ b/src/or/routerparse.c
@@ -1,6 +1,6 @@
/* Copyright 2001 Matej Pfajfar.
* Copyright 2001-2004 Roger Dingledine.
- * Copyright 2004 Roger Dingledine, Nick Mathewson. */
+ * Copyright 2004-2005 Roger Dingledine, Nick Mathewson. */
/* See LICENSE for licensing information */
/* $Id$ */
const char routerparse_c_id[] = "$Id$";
diff --git a/src/or/test.c b/src/or/test.c
index 3f743385d..822c56b43 100644
--- a/src/or/test.c
+++ b/src/or/test.c
@@ -1,5 +1,5 @@
/* Copyright 2001-2004 Roger Dingledine.
- * Copyright 2004 Roger Dingledine, Nick Mathewson. */
+ * Copyright 2004-2005 Roger Dingledine, Nick Mathewson. */
/* See LICENSE for licensing information */
/* $Id$ */
const char test_c_id[] = "$Id$";
diff --git a/src/or/tor_main.c b/src/or/tor_main.c
index 0b4462531..26c260c92 100644
--- a/src/or/tor_main.c
+++ b/src/or/tor_main.c
@@ -1,4 +1,5 @@
-/* Copyright 2001-2004 Roger Dingledine. */
+/* Copyright 2001-2004 Roger Dingledine.
+ * Copyright 2004-2005 Roger Dingledine, Nick Mathewson. */
/* See LICENSE for licensing information */
/* $Id$ */
const char tor_main_c_id[] = "$Id$";
diff --git a/src/tools/tor-resolve.c b/src/tools/tor-resolve.c
index 1f4a7a90e..1e8dcd6d1 100644
--- a/src/tools/tor-resolve.c
+++ b/src/tools/tor-resolve.c
@@ -1,4 +1,4 @@
-/* Copyright 2004 Nick Mathewson */
+/* Copyright 2004-2005 Roger Dingledine, Nick Mathewson */
/* See LICENSE for licensing information */
/* $Id$ */