Преглед изворни кода

Remove svn $Id$s from our source, and remove tor --version --version.
The subversion $Id$ fields made every commit force a rebuild of
whatever file got committed. They were not actually useful for
telling the version of Tor files in the wild.

svn:r17867

Nick Mathewson пре 15 година
родитељ
комит
c4b8fef362
68 измењених фајлова са 6 додато и 278 уклоњено
  1. 6 0
      ChangeLog
  2. 0 3
      src/common/address.c
  3. 0 2
      src/common/address.h
  4. 0 2
      src/common/aes.c
  5. 0 2
      src/common/aes.h
  6. 0 3
      src/common/compat.c
  7. 0 2
      src/common/compat.h
  8. 0 3
      src/common/container.c
  9. 0 3
      src/common/container.h
  10. 0 3
      src/common/crypto.c
  11. 0 2
      src/common/crypto.h
  12. 0 2
      src/common/ht.h
  13. 0 2
      src/common/log.c
  14. 0 2
      src/common/log.h
  15. 0 1
      src/common/memarea.c
  16. 0 1
      src/common/memarea.h
  17. 0 1
      src/common/mempool.c
  18. 0 1
      src/common/mempool.h
  19. 0 1
      src/common/strlcpy.c
  20. 0 2
      src/common/test.h
  21. 0 3
      src/common/torgzip.c
  22. 0 2
      src/common/torgzip.h
  23. 0 2
      src/common/torint.h
  24. 0 3
      src/common/tortls.c
  25. 0 2
      src/common/tortls.h
  26. 0 2
      src/common/util.c
  27. 0 2
      src/common/util.h
  28. 0 3
      src/or/buffers.c
  29. 0 3
      src/or/circuitbuild.c
  30. 0 3
      src/or/circuitlist.c
  31. 0 3
      src/or/circuituse.c
  32. 0 3
      src/or/command.c
  33. 0 111
      src/or/config.c
  34. 0 3
      src/or/connection.c
  35. 0 3
      src/or/connection_edge.c
  36. 0 3
      src/or/connection_or.c
  37. 0 3
      src/or/control.c
  38. 0 3
      src/or/cpuworker.c
  39. 0 3
      src/or/directory.c
  40. 0 3
      src/or/dirserv.c
  41. 0 3
      src/or/dirvote.c
  42. 0 3
      src/or/dns.c
  43. 0 3
      src/or/dnsserv.c
  44. 0 2
      src/or/eventdns.c
  45. 0 3
      src/or/geoip.c
  46. 0 3
      src/or/hibernate.c
  47. 0 3
      src/or/main.c
  48. 0 3
      src/or/networkstatus.c
  49. 0 4
      src/or/ntmain.c
  50. 0 3
      src/or/onion.c
  51. 0 2
      src/or/or.h
  52. 0 3
      src/or/policies.c
  53. 0 3
      src/or/reasons.c
  54. 0 3
      src/or/relay.c
  55. 0 3
      src/or/rendclient.c
  56. 0 3
      src/or/rendcommon.c
  57. 0 3
      src/or/rendmid.c
  58. 0 3
      src/or/rendservice.c
  59. 0 3
      src/or/rephist.c
  60. 0 3
      src/or/router.c
  61. 0 3
      src/or/routerlist.c
  62. 0 3
      src/or/routerparse.c
  63. 0 3
      src/or/test.c
  64. 0 3
      src/or/test_data.c
  65. 0 3
      src/or/tor_main.c
  66. 0 1
      src/tools/tor-gencert.c
  67. 0 1
      src/tools/tor-resolve.c
  68. 0 1
      src/win32/orconfig.h

+ 6 - 0
ChangeLog

@@ -30,6 +30,12 @@ Changes in version 0.2.1.10-alpha - 2009-01-??
       automatically give up after the 254th failure.  Bugfix on
       automatically give up after the 254th failure.  Bugfix on
       0.2.1.9-alpha.
       0.2.1.9-alpha.
 
 
+  o Deprecated and removed features:
+    - The old "tor --version --version" command, which would spit out the
+      subversion "Id" of most of the source files, is now removed.  It
+      turned out to be less useful than we'd expected, and harder to
+      maintain.
+
   o Code simplifications and refactoring:
   o Code simplifications and refactoring:
     - Change our header file guard macros to be less likely to conflict
     - Change our header file guard macros to be less likely to conflict
       with system headers.  Adam Langley noticed that we were conflicting
       with system headers.  Adam Langley noticed that we were conflicting

+ 0 - 3
src/common/address.c

@@ -2,9 +2,6 @@
  * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  * Copyright (c) 2007-2008, The Tor Project, Inc. */
  * Copyright (c) 2007-2008, The Tor Project, Inc. */
 /* See LICENSE for licensing information */
 /* See LICENSE for licensing information */
-/* $Id$ */
-const char address_c_id[] =
-  "$Id$";
 
 
 /**
 /**
  * \file address.c
  * \file address.c

+ 0 - 2
src/common/address.h

@@ -2,7 +2,6 @@
  * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  * Copyright (c) 2007-2008, The Tor Project, Inc. */
  * Copyright (c) 2007-2008, The Tor Project, Inc. */
 /* See LICENSE for licensing information */
 /* See LICENSE for licensing information */
-/* $Id$ */
 
 
 /**
 /**
  * \file address.h
  * \file address.h
@@ -11,7 +10,6 @@
 
 
 #ifndef _TOR_ADDRESS_H
 #ifndef _TOR_ADDRESS_H
 #define _TOR_ADDRESS_H
 #define _TOR_ADDRESS_H
-#define ADDRESS_H_ID "$Id$"
 
 
 #include "orconfig.h"
 #include "orconfig.h"
 #include "torint.h"
 #include "torint.h"

+ 0 - 2
src/common/aes.c

@@ -3,8 +3,6 @@
  * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  * Copyright (c) 2007-2008, The Tor Project, Inc. */
  * Copyright (c) 2007-2008, The Tor Project, Inc. */
 /* See LICENSE for licensing information */
 /* See LICENSE for licensing information */
-/* $Id$ */
-const char aes_c_id[] = "$Id$";
 
 
 /**
 /**
  * \file aes.c
  * \file aes.c

+ 0 - 2
src/common/aes.h

@@ -2,13 +2,11 @@
  * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  * Copyright (c) 2007-2008, The Tor Project, Inc. */
  * Copyright (c) 2007-2008, The Tor Project, Inc. */
 /* See LICENSE for licensing information */
 /* See LICENSE for licensing information */
-/* $Id$ */
 
 
 /* Implements a minimal interface to counter-mode AES. */
 /* Implements a minimal interface to counter-mode AES. */
 
 
 #ifndef _TOR_AES_H
 #ifndef _TOR_AES_H
 #define _TOR_AES_H
 #define _TOR_AES_H
-#define AES_H_ID "$Id$"
 
 
 /**
 /**
  * \file aes.h
  * \file aes.h

+ 0 - 3
src/common/compat.c

@@ -2,9 +2,6 @@
  * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  * Copyright (c) 2007-2008, The Tor Project, Inc. */
  * Copyright (c) 2007-2008, The Tor Project, Inc. */
 /* See LICENSE for licensing information */
 /* See LICENSE for licensing information */
-/* $Id$ */
-const char compat_c_id[] =
-  "$Id$";
 
 
 /**
 /**
  * \file compat.c
  * \file compat.c

+ 0 - 2
src/common/compat.h

@@ -2,11 +2,9 @@
  * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  * Copyright (c) 2007-2008, The Tor Project, Inc. */
  * Copyright (c) 2007-2008, The Tor Project, Inc. */
 /* See LICENSE for licensing information */
 /* See LICENSE for licensing information */
-/* $Id$ */
 
 
 #ifndef _TOR_COMPAT_H
 #ifndef _TOR_COMPAT_H
 #define _TOR_COMPAT_H
 #define _TOR_COMPAT_H
-#define COMPAT_H_ID "$Id$"
 
 
 #include "orconfig.h"
 #include "orconfig.h"
 #include "torint.h"
 #include "torint.h"

+ 0 - 3
src/common/container.c

@@ -2,9 +2,6 @@
  * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  * Copyright (c) 2007-2008, The Tor Project, Inc. */
  * Copyright (c) 2007-2008, The Tor Project, Inc. */
 /* See LICENSE for licensing information */
 /* See LICENSE for licensing information */
-/* $Id$ */
-const char container_c_id[] =
-  "$Id$";
 
 
 /**
 /**
  * \file container.c
  * \file container.c

+ 0 - 3
src/common/container.h

@@ -2,12 +2,9 @@
  * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  * Copyright (c) 2007-2008, The Tor Project, Inc. */
  * Copyright (c) 2007-2008, The Tor Project, Inc. */
 /* See LICENSE for licensing information */
 /* See LICENSE for licensing information */
-/* $Id$ */
 
 
 #ifndef _TOR_CONTAINER_H
 #ifndef _TOR_CONTAINER_H
 #define _TOR_CONTAINER_H
 #define _TOR_CONTAINER_H
-#define CONTAINER_H_ID \
-  "$Id$"
 
 
 #include "util.h"
 #include "util.h"
 
 

+ 0 - 3
src/common/crypto.c

@@ -3,9 +3,6 @@
  * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  * Copyright (c) 2007-2008, The Tor Project, Inc. */
  * Copyright (c) 2007-2008, The Tor Project, Inc. */
 /* See LICENSE for licensing information */
 /* See LICENSE for licensing information */
-/* $Id$ */
-const char crypto_c_id[] =
-  "$Id$";
 
 
 /**
 /**
  * \file crypto.c
  * \file crypto.c

+ 0 - 2
src/common/crypto.h

@@ -3,7 +3,6 @@
  * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  * Copyright (c) 2007-2008, The Tor Project, Inc. */
  * Copyright (c) 2007-2008, The Tor Project, Inc. */
 /* See LICENSE for licensing information */
 /* See LICENSE for licensing information */
-/* $Id$ */
 
 
 /**
 /**
  * \file crypto.h
  * \file crypto.h
@@ -13,7 +12,6 @@
 
 
 #ifndef _TOR_CRYPTO_H
 #ifndef _TOR_CRYPTO_H
 #define _TOR_CRYPTO_H
 #define _TOR_CRYPTO_H
-#define CRYPTO_H_ID "$Id$"
 
 
 #include <stdio.h>
 #include <stdio.h>
 #include "torint.h"
 #include "torint.h"

+ 0 - 2
src/common/ht.h

@@ -1,13 +1,11 @@
 /* Copyright 2002 Christopher Clark */
 /* Copyright 2002 Christopher Clark */
 /* Copyright 2005 Nick Mathewson */
 /* Copyright 2005 Nick Mathewson */
 /* See license at end. */
 /* See license at end. */
-/* $Id$ */
 
 
 /* Based on ideas by Christopher Clark and interfaces from Niels Provos. */
 /* Based on ideas by Christopher Clark and interfaces from Niels Provos. */
 
 
 #ifndef _TOR_HT_H
 #ifndef _TOR_HT_H
 #define _TOR_HT_H
 #define _TOR_HT_H
-#define HT_H_ID "$Id$"
 
 
 #define HT_HEAD(name, type)                                             \
 #define HT_HEAD(name, type)                                             \
   struct name {                                                         \
   struct name {                                                         \

+ 0 - 2
src/common/log.c

@@ -3,8 +3,6 @@
  * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  * Copyright (c) 2007-2008, The Tor Project, Inc. */
  * Copyright (c) 2007-2008, The Tor Project, Inc. */
 /* See LICENSE for licensing information */
 /* See LICENSE for licensing information */
-/* $Id$ */
-const char log_c_id[] = "$Id$";
 
 
 /**
 /**
  * \file log.c
  * \file log.c

+ 0 - 2
src/common/log.h

@@ -3,7 +3,6 @@
  * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  * Copyright (c) 2007-2008, The Tor Project, Inc. */
  * Copyright (c) 2007-2008, The Tor Project, Inc. */
 /* See LICENSE for licensing information */
 /* See LICENSE for licensing information */
-/* $Id$ */
 
 
 /**
 /**
  * \file log.h
  * \file log.h
@@ -12,7 +11,6 @@
  **/
  **/
 
 
 #ifndef _TOR_LOG_H
 #ifndef _TOR_LOG_H
-#define LOG_H_ID "$Id$"
 
 
 #include "compat.h"
 #include "compat.h"
 
 

+ 0 - 1
src/common/memarea.c

@@ -1,6 +1,5 @@
 /* Copyright (c) 2008, The Tor Project, Inc. */
 /* Copyright (c) 2008, The Tor Project, Inc. */
 /* See LICENSE for licensing information */
 /* See LICENSE for licensing information */
-/* $Id$ */
 
 
 /** \file memarea.c
 /** \file memarea.c
  * \brief Implementation for memarea_t, an allocator for allocating lots of
  * \brief Implementation for memarea_t, an allocator for allocating lots of

+ 0 - 1
src/common/memarea.h

@@ -1,6 +1,5 @@
 /* Copyright (c) 2008, The Tor Project, Inc. */
 /* Copyright (c) 2008, The Tor Project, Inc. */
 /* See LICENSE for licensing information */
 /* See LICENSE for licensing information */
-/* $Id$ */
 /* Tor dependencies */
 /* Tor dependencies */
 
 
 #ifndef _TOR_MEMAREA_H
 #ifndef _TOR_MEMAREA_H

+ 0 - 1
src/common/mempool.c

@@ -1,6 +1,5 @@
 /* Copyright (c) 2007-2008, The Tor Project, Inc. */
 /* Copyright (c) 2007-2008, The Tor Project, Inc. */
 /* See LICENSE for licensing information */
 /* See LICENSE for licensing information */
-/* $Id$ */
 #if 1
 #if 1
 /* Tor dependencies */
 /* Tor dependencies */
 #include "orconfig.h"
 #include "orconfig.h"

+ 0 - 1
src/common/mempool.h

@@ -1,6 +1,5 @@
 /* Copyright (c) 2007-2008, The Tor Project, Inc. */
 /* Copyright (c) 2007-2008, The Tor Project, Inc. */
 /* See LICENSE for licensing information */
 /* See LICENSE for licensing information */
-/* $Id$ */
 
 
 /**
 /**
  * \file mempool.h
  * \file mempool.h

+ 0 - 1
src/common/strlcpy.c

@@ -1,4 +1,3 @@
-/* $Id$ */
 /*	$OpenBSD: strlcpy.c,v 1.2 1998/11/06 04:33:16 wvdputte Exp $	*/
 /*	$OpenBSD: strlcpy.c,v 1.2 1998/11/06 04:33:16 wvdputte Exp $	*/
 
 
 /*
 /*

+ 0 - 2
src/common/test.h

@@ -2,11 +2,9 @@
  * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  * Copyright (c) 2007-2008, The Tor Project, Inc. */
  * Copyright (c) 2007-2008, The Tor Project, Inc. */
 /* See LICENSE for licensing information */
 /* See LICENSE for licensing information */
-/* $Id$ */
 
 
 #ifndef _TOR_TEST_H
 #ifndef _TOR_TEST_H
 #define _TOR_TEST_H
 #define _TOR_TEST_H
-#define TEST_H_ID "$Id$"
 
 
 /**
 /**
  * \file test.h
  * \file test.h

+ 0 - 3
src/common/torgzip.c

@@ -2,9 +2,6 @@
  * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  * Copyright (c) 2007-2008, The Tor Project, Inc. */
  * Copyright (c) 2007-2008, The Tor Project, Inc. */
 /* See LICENSE for licensing information */
 /* See LICENSE for licensing information */
-/* $Id$ */
-const char torgzip_c_id[] =
-  "$Id$";
 
 
 /**
 /**
  * \file torgzip.c
  * \file torgzip.c

+ 0 - 2
src/common/torgzip.h

@@ -2,7 +2,6 @@
  * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  * Copyright (c) 2007-2008, The Tor Project, Inc. */
  * Copyright (c) 2007-2008, The Tor Project, Inc. */
 /* See LICENSE for licensing information */
 /* See LICENSE for licensing information */
-/* $Id$ */
 
 
 /**
 /**
  * \file torgzip.h
  * \file torgzip.h
@@ -11,7 +10,6 @@
 
 
 #ifndef _TOR_TORGZIP_H
 #ifndef _TOR_TORGZIP_H
 #define _TOR_TORGZIP_H
 #define _TOR_TORGZIP_H
-#define TORGZIP_H_ID "$Id$"
 
 
 /** Enumeration of what kind of compression to use.  Only ZLIB_METHOD is
 /** Enumeration of what kind of compression to use.  Only ZLIB_METHOD is
  * guaranteed to be supported by the compress/uncompress functions here;
  * guaranteed to be supported by the compress/uncompress functions here;

+ 0 - 2
src/common/torint.h

@@ -2,7 +2,6 @@
  * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  * Copyright (c) 2007-2008, The Tor Project, Inc. */
  * Copyright (c) 2007-2008, The Tor Project, Inc. */
 /* See LICENSE for licensing information */
 /* See LICENSE for licensing information */
-/* $Id$ */
 
 
 /**
 /**
  * \file torint.h
  * \file torint.h
@@ -11,7 +10,6 @@
 
 
 #ifndef _TOR_TORINT_H
 #ifndef _TOR_TORINT_H
 #define _TOR_TORINT_H
 #define _TOR_TORINT_H
-#define TORINT_H_ID "$Id$"
 
 
 #include "orconfig.h"
 #include "orconfig.h"
 
 

+ 0 - 3
src/common/tortls.c

@@ -2,9 +2,6 @@
  * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  * Copyright (c) 2007-2008, The Tor Project, Inc. */
  * Copyright (c) 2007-2008, The Tor Project, Inc. */
 /* See LICENSE for licensing information */
 /* See LICENSE for licensing information */
-/* $Id$ */
-const char tortls_c_id[] =
-  "$Id$";
 
 
 /**
 /**
  * \file tortls.c
  * \file tortls.c

+ 0 - 2
src/common/tortls.h

@@ -2,11 +2,9 @@
  * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  * Copyright (c) 2007-2008, The Tor Project, Inc. */
  * Copyright (c) 2007-2008, The Tor Project, Inc. */
 /* See LICENSE for licensing information */
 /* See LICENSE for licensing information */
-/* $Id$ */
 
 
 #ifndef _TOR_TORTLS_H
 #ifndef _TOR_TORTLS_H
 #define _TOR_TORTLS_H
 #define _TOR_TORTLS_H
-#define TORTLS_H_ID "$Id$"
 
 
 /**
 /**
  * \file tortls.h
  * \file tortls.h

+ 0 - 2
src/common/util.c

@@ -2,8 +2,6 @@
  * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  * Copyright (c) 2007-2008, The Tor Project, Inc. */
  * Copyright (c) 2007-2008, The Tor Project, Inc. */
 /* See LICENSE for licensing information */
 /* See LICENSE for licensing information */
-/* $Id$ */
-const char util_c_id[] = "$Id$";
 
 
 /**
 /**
  * \file util.c
  * \file util.c

+ 0 - 2
src/common/util.h

@@ -2,7 +2,6 @@
  * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  * Copyright (c) 2007-2008, The Tor Project, Inc. */
  * Copyright (c) 2007-2008, The Tor Project, Inc. */
 /* See LICENSE for licensing information */
 /* See LICENSE for licensing information */
-/* $Id$ */
 
 
 /**
 /**
  * \file util.h
  * \file util.h
@@ -11,7 +10,6 @@
 
 
 #ifndef _TOR_UTIL_H
 #ifndef _TOR_UTIL_H
 #define _TOR_UTIL_H
 #define _TOR_UTIL_H
-#define UTIL_H_ID "$Id$"
 
 
 #include "orconfig.h"
 #include "orconfig.h"
 #include "torint.h"
 #include "torint.h"

+ 0 - 3
src/or/buffers.c

@@ -3,9 +3,6 @@
  * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  * Copyright (c) 2007-2008, The Tor Project, Inc. */
  * Copyright (c) 2007-2008, The Tor Project, Inc. */
 /* See LICENSE for licensing information */
 /* See LICENSE for licensing information */
-/* $Id$ */
-const char buffers_c_id[] =
-  "$Id$";
 
 
 /**
 /**
  * \file buffers.c
  * \file buffers.c

+ 0 - 3
src/or/circuitbuild.c

@@ -3,9 +3,6 @@
  * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  * Copyright (c) 2007-2008, The Tor Project, Inc. */
  * Copyright (c) 2007-2008, The Tor Project, Inc. */
 /* See LICENSE for licensing information */
 /* See LICENSE for licensing information */
-/* $Id$ */
-const char circuitbuild_c_id[] =
-  "$Id$";
 
 
 /**
 /**
  * \file circuitbuild.c
  * \file circuitbuild.c

+ 0 - 3
src/or/circuitlist.c

@@ -3,9 +3,6 @@
  * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  * Copyright (c) 2007-2008, The Tor Project, Inc. */
  * Copyright (c) 2007-2008, The Tor Project, Inc. */
 /* See LICENSE for licensing information */
 /* See LICENSE for licensing information */
-/* $Id$ */
-const char circuitlist_c_id[] =
-  "$Id$";
 
 
 /**
 /**
  * \file circuitlist.c
  * \file circuitlist.c

+ 0 - 3
src/or/circuituse.c

@@ -3,9 +3,6 @@
  * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  * Copyright (c) 2007-2008, The Tor Project, Inc. */
  * Copyright (c) 2007-2008, The Tor Project, Inc. */
 /* See LICENSE for licensing information */
 /* See LICENSE for licensing information */
-/* $Id$ */
-const char circuituse_c_id[] =
-  "$Id$";
 
 
 /**
 /**
  * \file circuituse.c
  * \file circuituse.c

+ 0 - 3
src/or/command.c

@@ -3,9 +3,6 @@
  * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  * Copyright (c) 2007-2008, The Tor Project, Inc. */
  * Copyright (c) 2007-2008, The Tor Project, Inc. */
 /* See LICENSE for licensing information */
 /* See LICENSE for licensing information */
-/* $Id$ */
-const char command_c_id[] =
-  "$Id$";
 
 
 /**
 /**
  * \file command.c
  * \file command.c

+ 0 - 111
src/or/config.c

@@ -3,9 +3,6 @@
  * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  * Copyright (c) 2007-2008, The Tor Project, Inc. */
  * Copyright (c) 2007-2008, The Tor Project, Inc. */
 /* See LICENSE for licensing information */
 /* See LICENSE for licensing information */
-/* $Id$ */
-const char config_c_id[] = \
-  "$Id$";
 
 
 /**
 /**
  * \file config.c
  * \file config.c
@@ -698,7 +695,6 @@ static int options_init_logs(or_options_t *options, int validate_only);
 
 
 static uint64_t config_parse_memunit(const char *s, int *ok);
 static uint64_t config_parse_memunit(const char *s, int *ok);
 static int config_parse_interval(const char *s, int *ok);
 static int config_parse_interval(const char *s, int *ok);
-static void print_svn_version(void);
 static void init_libevent(void);
 static void init_libevent(void);
 static int opt_streq(const char *s1, const char *s2);
 static int opt_streq(const char *s1, const char *s2);
 /** Versions of libevent. */
 /** Versions of libevent. */
@@ -3926,9 +3922,6 @@ options_init_from_torrc(int argc, char **argv)
 
 
   if (argc > 1 && (!strcmp(argv[1],"--version"))) {
   if (argc > 1 && (!strcmp(argv[1],"--version"))) {
     printf("Tor version %s.\n",get_version());
     printf("Tor version %s.\n",get_version());
-    if (argc > 2 && (!strcmp(argv[2],"--version"))) {
-      print_svn_version();
-    }
     exit(0);
     exit(0);
   }
   }
 
 
@@ -5229,107 +5222,3 @@ getinfo_helper_config(control_connection_t *conn,
   return 0;
   return 0;
 }
 }
 
 
-#include "aes.h"
-#include "ht.h"
-#include "test.h"
-
-extern const char address_c_id[];
-extern const char aes_c_id[];
-extern const char compat_c_id[];
-extern const char container_c_id[];
-extern const char crypto_c_id[];
-extern const char log_c_id[];
-extern const char torgzip_c_id[];
-extern const char tortls_c_id[];
-extern const char util_c_id[];
-
-extern const char buffers_c_id[];
-extern const char circuitbuild_c_id[];
-extern const char circuitlist_c_id[];
-extern const char circuituse_c_id[];
-extern const char command_c_id[];
-//  extern const char config_c_id[];
-extern const char connection_c_id[];
-extern const char connection_edge_c_id[];
-extern const char connection_or_c_id[];
-extern const char control_c_id[];
-extern const char cpuworker_c_id[];
-extern const char directory_c_id[];
-extern const char dirserv_c_id[];
-extern const char dns_c_id[];
-extern const char hibernate_c_id[];
-extern const char main_c_id[];
-#ifdef NT_SERVICE
-extern const char ntmain_c_id[];
-#endif
-extern const char onion_c_id[];
-extern const char policies_c_id[];
-extern const char relay_c_id[];
-extern const char rendclient_c_id[];
-extern const char rendcommon_c_id[];
-extern const char rendmid_c_id[];
-extern const char rendservice_c_id[];
-extern const char rephist_c_id[];
-extern const char router_c_id[];
-extern const char routerlist_c_id[];
-extern const char routerparse_c_id[];
-
-/** Dump the version of every file to the log. */
-static void
-print_svn_version(void)
-{
-  puts(ADDRESS_H_ID);
-  puts(AES_H_ID);
-  puts(COMPAT_H_ID);
-  puts(CONTAINER_H_ID);
-  puts(CRYPTO_H_ID);
-  puts(HT_H_ID);
-  puts(TEST_H_ID);
-  puts(LOG_H_ID);
-  puts(TORGZIP_H_ID);
-  puts(TORINT_H_ID);
-  puts(TORTLS_H_ID);
-  puts(UTIL_H_ID);
-  puts(address_c_id);
-  puts(aes_c_id);
-  puts(compat_c_id);
-  puts(container_c_id);
-  puts(crypto_c_id);
-  puts(log_c_id);
-  puts(torgzip_c_id);
-  puts(tortls_c_id);
-  puts(util_c_id);
-
-  puts(OR_H_ID);
-  puts(buffers_c_id);
-  puts(circuitbuild_c_id);
-  puts(circuitlist_c_id);
-  puts(circuituse_c_id);
-  puts(command_c_id);
-  puts(config_c_id);
-  puts(connection_c_id);
-  puts(connection_edge_c_id);
-  puts(connection_or_c_id);
-  puts(control_c_id);
-  puts(cpuworker_c_id);
-  puts(directory_c_id);
-  puts(dirserv_c_id);
-  puts(dns_c_id);
-  puts(hibernate_c_id);
-  puts(main_c_id);
-#ifdef NT_SERVICE
-  puts(ntmain_c_id);
-#endif
-  puts(onion_c_id);
-  puts(policies_c_id);
-  puts(relay_c_id);
-  puts(rendclient_c_id);
-  puts(rendcommon_c_id);
-  puts(rendmid_c_id);
-  puts(rendservice_c_id);
-  puts(rephist_c_id);
-  puts(router_c_id);
-  puts(routerlist_c_id);
-  puts(routerparse_c_id);
-}
-

+ 0 - 3
src/or/connection.c

@@ -3,9 +3,6 @@
  * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  * Copyright (c) 2007-2008, The Tor Project, Inc. */
  * Copyright (c) 2007-2008, The Tor Project, Inc. */
 /* See LICENSE for licensing information */
 /* See LICENSE for licensing information */
-/* $Id$ */
-const char connection_c_id[] =
-  "$Id$";
 
 
 /**
 /**
  * \file connection.c
  * \file connection.c

+ 0 - 3
src/or/connection_edge.c

@@ -3,9 +3,6 @@
  * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  * Copyright (c) 2007-2008, The Tor Project, Inc. */
  * Copyright (c) 2007-2008, The Tor Project, Inc. */
 /* See LICENSE for licensing information */
 /* See LICENSE for licensing information */
-/* $Id$ */
-const char connection_edge_c_id[] =
-  "$Id$";
 
 
 /**
 /**
  * \file connection_edge.c
  * \file connection_edge.c

+ 0 - 3
src/or/connection_or.c

@@ -3,9 +3,6 @@
  * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  * Copyright (c) 2007-2008, The Tor Project, Inc. */
  * Copyright (c) 2007-2008, The Tor Project, Inc. */
 /* See LICENSE for licensing information */
 /* See LICENSE for licensing information */
-/* $Id$ */
-const char connection_or_c_id[] =
-  "$Id$";
 
 
 /**
 /**
  * \file connection_or.c
  * \file connection_or.c

+ 0 - 3
src/or/control.c

@@ -1,9 +1,6 @@
 /* Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
 /* Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  * Copyright (c) 2007-2008, The Tor Project, Inc. */
  * Copyright (c) 2007-2008, The Tor Project, Inc. */
 /* See LICENSE for licensing information */
 /* See LICENSE for licensing information */
-/* $Id$ */
-const char control_c_id[] =
-  "$Id$";
 
 
 /**
 /**
  * \file control.c
  * \file control.c

+ 0 - 3
src/or/cpuworker.c

@@ -2,9 +2,6 @@
  * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  * Copyright (c) 2007-2008, The Tor Project, Inc. */
  * Copyright (c) 2007-2008, The Tor Project, Inc. */
 /* See LICENSE for licensing information */
 /* See LICENSE for licensing information */
-/* $Id$ */
-const char cpuworker_c_id[] =
-  "$Id$";
 
 
 /**
 /**
  * \file cpuworker.c
  * \file cpuworker.c

+ 0 - 3
src/or/directory.c

@@ -2,9 +2,6 @@
  * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  * Copyright (c) 2007-2008, The Tor Project, Inc. */
  * Copyright (c) 2007-2008, The Tor Project, Inc. */
 /* See LICENSE for licensing information */
 /* See LICENSE for licensing information */
-/* $Id$ */
-const char directory_c_id[] =
-  "$Id$";
 
 
 #include "or.h"
 #include "or.h"
 #if defined(EXPORTMALLINFO) && defined(HAVE_MALLOC_H) && defined(HAVE_MALLINFO)
 #if defined(EXPORTMALLINFO) && defined(HAVE_MALLOC_H) && defined(HAVE_MALLINFO)

+ 0 - 3
src/or/dirserv.c

@@ -2,9 +2,6 @@
  * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  * Copyright (c) 2007-2008, The Tor Project, Inc. */
  * Copyright (c) 2007-2008, The Tor Project, Inc. */
 /* See LICENSE for licensing information */
 /* See LICENSE for licensing information */
-/* $Id$ */
-const char dirserv_c_id[] =
-  "$Id$";
 
 
 #define DIRSERV_PRIVATE
 #define DIRSERV_PRIVATE
 #include "or.h"
 #include "or.h"

+ 0 - 3
src/or/dirvote.c

@@ -2,9 +2,6 @@
  * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  * Copyright (c) 2007-2008, The Tor Project, Inc. */
  * Copyright (c) 2007-2008, The Tor Project, Inc. */
 /* See LICENSE for licensing information */
 /* See LICENSE for licensing information */
-/* $Id$ */
-const char dirvote_c_id[] =
-  "$Id$";
 
 
 #define DIRVOTE_PRIVATE
 #define DIRVOTE_PRIVATE
 #include "or.h"
 #include "or.h"

+ 0 - 3
src/or/dns.c

@@ -2,9 +2,6 @@
  * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  * Copyright (c) 2007-2008, The Tor Project, Inc. */
  * Copyright (c) 2007-2008, The Tor Project, Inc. */
 /* See LICENSE for licensing information */
 /* See LICENSE for licensing information */
-/* $Id$ */
-const char dns_c_id[] =
-  "$Id$";
 
 
 /**
 /**
  * \file dns.c
  * \file dns.c

+ 0 - 3
src/or/dnsserv.c

@@ -1,8 +1,5 @@
 /* Copyright (c) 2007-2008, The Tor Project, Inc. */
 /* Copyright (c) 2007-2008, The Tor Project, Inc. */
 /* See LICENSE for licensing information */
 /* See LICENSE for licensing information */
-/* $Id$ */
-const char dnsserv_c_id[] =
-  "$Id$";
 
 
 /**
 /**
  * \file dnsserv.c \brief Implements client-side DNS proxy server code.  Note:
  * \file dnsserv.c \brief Implements client-side DNS proxy server code.  Note:

+ 0 - 2
src/or/eventdns.c

@@ -1,5 +1,3 @@
-/* $Id$ */
-
 /* The original version of this module was written by Adam Langley; for
 /* The original version of this module was written by Adam Langley; for
  * a history of modifications, check out the subversion logs.
  * a history of modifications, check out the subversion logs.
  *
  *

+ 0 - 3
src/or/geoip.c

@@ -1,8 +1,5 @@
 /* Copyright (c) 2007-2008, The Tor Project, Inc. */
 /* Copyright (c) 2007-2008, The Tor Project, Inc. */
 /* See LICENSE for licensing information */
 /* See LICENSE for licensing information */
-/* $Id: /tor/trunk/src/or/networkstatus.c 15493 2007-12-16T18:33:25.055570Z nickm  $ */
-const char geoip_c_id[] =
-  "$Id: /tor/trunk/src/or/networkstatus.c 15493 2007-12-16T18:33:25.055570Z nickm  $";
 
 
 /**
 /**
  * \file geoip.c
  * \file geoip.c

+ 0 - 3
src/or/hibernate.c

@@ -1,9 +1,6 @@
 /* Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
 /* Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  * Copyright (c) 2007-2008, The Tor Project, Inc. */
  * Copyright (c) 2007-2008, The Tor Project, Inc. */
 /* See LICENSE for licensing information */
 /* See LICENSE for licensing information */
-/* $Id$ */
-const char hibernate_c_id[] =
-  "$Id$";
 
 
 /**
 /**
  * \file hibernate.c
  * \file hibernate.c

+ 0 - 3
src/or/main.c

@@ -3,9 +3,6 @@
  * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  * Copyright (c) 2007-2008, The Tor Project, Inc. */
  * Copyright (c) 2007-2008, The Tor Project, Inc. */
 /* See LICENSE for licensing information */
 /* See LICENSE for licensing information */
-/* $Id$ */
-const char main_c_id[] =
-  "$Id$";
 
 
 /**
 /**
  * \file main.c
  * \file main.c

+ 0 - 3
src/or/networkstatus.c

@@ -3,9 +3,6 @@
  * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  * Copyright (c) 2007-2008, The Tor Project, Inc. */
  * Copyright (c) 2007-2008, The Tor Project, Inc. */
 /* See LICENSE for licensing information */
 /* See LICENSE for licensing information */
-/* $Id$ */
-const char networkstatus_c_id[] =
-  "$Id$";
 
 
 /**
 /**
  * \file networkstatus.c
  * \file networkstatus.c

+ 0 - 4
src/or/ntmain.c

@@ -2,14 +2,10 @@
  * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  * Copyright (c) 2007-2008, The Tor Project, Inc. */
  * Copyright (c) 2007-2008, The Tor Project, Inc. */
 /* See LICENSE for licensing information */
 /* See LICENSE for licensing information */
-/* $Id$ */
 
 
 #define MAIN_PRIVATE
 #define MAIN_PRIVATE
 #include "or.h"
 #include "or.h"
 
 
-const char ntmain_c_id[] =
-  "$Id$";
-
 #include <tchar.h>
 #include <tchar.h>
 #define GENSRV_SERVICENAME  TEXT("tor")
 #define GENSRV_SERVICENAME  TEXT("tor")
 #define GENSRV_DISPLAYNAME  TEXT("Tor Win32 Service")
 #define GENSRV_DISPLAYNAME  TEXT("Tor Win32 Service")

+ 0 - 3
src/or/onion.c

@@ -3,9 +3,6 @@
  * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  * Copyright (c) 2007-2008, The Tor Project, Inc. */
  * Copyright (c) 2007-2008, The Tor Project, Inc. */
 /* See LICENSE for licensing information */
 /* See LICENSE for licensing information */
-/* $Id$ */
-const char onion_c_id[] =
-  "$Id$";
 
 
 /**
 /**
  * \file onion.c
  * \file onion.c

+ 0 - 2
src/or/or.h

@@ -3,7 +3,6 @@
  * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  * Copyright (c) 2007-2008, The Tor Project, Inc. */
  * Copyright (c) 2007-2008, The Tor Project, Inc. */
 /* See LICENSE for licensing information */
 /* See LICENSE for licensing information */
-/* $Id$ */
 
 
 /**
 /**
  * \file or.h
  * \file or.h
@@ -12,7 +11,6 @@
 
 
 #ifndef _TOR_OR_H
 #ifndef _TOR_OR_H
 #define _TOR_OR_H
 #define _TOR_OR_H
-#define OR_H_ID "$Id$"
 
 
 #include "orconfig.h"
 #include "orconfig.h"
 
 

+ 0 - 3
src/or/policies.c

@@ -2,9 +2,6 @@
  * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  * Copyright (c) 2007-2008, The Tor Project, Inc. */
  * Copyright (c) 2007-2008, The Tor Project, Inc. */
 /* See LICENSE for licensing information */
 /* See LICENSE for licensing information */
-/* $Id$ */
-const char policies_c_id[] = \
-  "$Id$";
 
 
 /**
 /**
  * \file policies.c
  * \file policies.c

+ 0 - 3
src/or/reasons.c

@@ -1,9 +1,6 @@
 /* Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
 /* Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  * Copyright (c) 2007-2008, The Tor Project, Inc. */
  * Copyright (c) 2007-2008, The Tor Project, Inc. */
 /* See LICENSE for licensing information */
 /* See LICENSE for licensing information */
-/* $Id$ */
-const char reasons_c_id[] =
-  "$Id$";
 
 
 /**
 /**
  * \file reasons.c
  * \file reasons.c

+ 0 - 3
src/or/relay.c

@@ -3,9 +3,6 @@
  * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  * Copyright (c) 2007-2008, The Tor Project, Inc. */
  * Copyright (c) 2007-2008, The Tor Project, Inc. */
 /* See LICENSE for licensing information */
 /* See LICENSE for licensing information */
-/* $Id$ */
-const char relay_c_id[] =
-  "$Id$";
 
 
 /**
 /**
  * \file relay.c
  * \file relay.c

+ 0 - 3
src/or/rendclient.c

@@ -1,9 +1,6 @@
 /* Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
 /* Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  * Copyright (c) 2007-2008, The Tor Project, Inc. */
  * Copyright (c) 2007-2008, The Tor Project, Inc. */
 /* See LICENSE for licensing information */
 /* See LICENSE for licensing information */
-/* $Id$ */
-const char rendclient_c_id[] =
-  "$Id$";
 
 
 /**
 /**
  * \file rendclient.c
  * \file rendclient.c

+ 0 - 3
src/or/rendcommon.c

@@ -1,9 +1,6 @@
 /* Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
 /* Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  * Copyright (c) 2007-2008, The Tor Project, Inc. */
  * Copyright (c) 2007-2008, The Tor Project, Inc. */
 /* See LICENSE for licensing information */
 /* See LICENSE for licensing information */
-/* $Id$ */
-const char rendcommon_c_id[] =
-  "$Id$";
 
 
 /**
 /**
  * \file rendcommon.c
  * \file rendcommon.c

+ 0 - 3
src/or/rendmid.c

@@ -1,9 +1,6 @@
 /* Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
 /* Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  * Copyright (c) 2007-2008, The Tor Project, Inc. */
  * Copyright (c) 2007-2008, The Tor Project, Inc. */
 /* See LICENSE for licensing information */
 /* See LICENSE for licensing information */
-/* $Id$ */
-const char rendmid_c_id[] =
-  "$Id$";
 
 
 /**
 /**
  * \file rendmid.c
  * \file rendmid.c

+ 0 - 3
src/or/rendservice.c

@@ -1,9 +1,6 @@
 /* Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
 /* Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  * Copyright (c) 2007-2008, The Tor Project, Inc. */
  * Copyright (c) 2007-2008, The Tor Project, Inc. */
 /* See LICENSE for licensing information */
 /* See LICENSE for licensing information */
-/* $Id$ */
-const char rendservice_c_id[] =
-  "$Id$";
 
 
 /**
 /**
  * \file rendservice.c
  * \file rendservice.c

+ 0 - 3
src/or/rephist.c

@@ -1,9 +1,6 @@
 /* Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
 /* Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  * Copyright (c) 2007-2008, The Tor Project, Inc. */
  * Copyright (c) 2007-2008, The Tor Project, Inc. */
 /* See LICENSE for licensing information */
 /* See LICENSE for licensing information */
-/* $Id$ */
-const char rephist_c_id[] =
-  "$Id$";
 
 
 /**
 /**
  * \file rephist.c
  * \file rephist.c

+ 0 - 3
src/or/router.c

@@ -3,9 +3,6 @@
  * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  * Copyright (c) 2007-2008, The Tor Project, Inc. */
  * Copyright (c) 2007-2008, The Tor Project, Inc. */
 /* See LICENSE for licensing information */
 /* See LICENSE for licensing information */
-/* $Id$ */
-const char router_c_id[] =
-  "$Id$";
 
 
 #define ROUTER_PRIVATE
 #define ROUTER_PRIVATE
 
 

+ 0 - 3
src/or/routerlist.c

@@ -3,9 +3,6 @@
  * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  * Copyright (c) 2007-2008, The Tor Project, Inc. */
  * Copyright (c) 2007-2008, The Tor Project, Inc. */
 /* See LICENSE for licensing information */
 /* See LICENSE for licensing information */
-/* $Id$ */
-const char routerlist_c_id[] =
-  "$Id$";
 
 
 /**
 /**
  * \file routerlist.c
  * \file routerlist.c

+ 0 - 3
src/or/routerparse.c

@@ -3,9 +3,6 @@
  * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  * Copyright (c) 2007-2008, The Tor Project, Inc. */
  * Copyright (c) 2007-2008, The Tor Project, Inc. */
 /* See LICENSE for licensing information */
 /* See LICENSE for licensing information */
-/* $Id$ */
-const char routerparse_c_id[] =
-  "$Id$";
 
 
 /**
 /**
  * \file routerparse.c
  * \file routerparse.c

+ 0 - 3
src/or/test.c

@@ -2,9 +2,6 @@
  * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  * Copyright (c) 2007-2008, The Tor Project, Inc. */
  * Copyright (c) 2007-2008, The Tor Project, Inc. */
 /* See LICENSE for licensing information */
 /* See LICENSE for licensing information */
-/* $Id$ */
-const char test_c_id[] =
-  "$Id$";
 
 
 /* Ordinarily defined in tor_main.c; this bit is just here to provide one
 /* Ordinarily defined in tor_main.c; this bit is just here to provide one
  * since we're not linking to tor_main.c */
  * since we're not linking to tor_main.c */

+ 0 - 3
src/or/test_data.c

@@ -2,9 +2,6 @@
  * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  * Copyright (c) 2007-2008, The Tor Project, Inc. */
  * Copyright (c) 2007-2008, The Tor Project, Inc. */
 /* See LICENSE for licensing information */
 /* See LICENSE for licensing information */
-/* $Id: /tor/trunk/src/or/test.c 13338 2007-06-10T19:13:32.101740Z nickm  $ */
-const char test_data_c_id[] =
-  "$Id: /tor/trunk/src/or/test.c 13338 2007-06-10T19:13:32.101740Z nickm  $";
 
 
 /** First of 3 example authority certificates for unit testing. */
 /** First of 3 example authority certificates for unit testing. */
 const char AUTHORITY_CERT_1[] =
 const char AUTHORITY_CERT_1[] =

+ 0 - 3
src/or/tor_main.c

@@ -2,9 +2,6 @@
  * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  * Copyright (c) 2007-2008, The Tor Project, Inc. */
  * Copyright (c) 2007-2008, The Tor Project, Inc. */
 /* See LICENSE for licensing information */
 /* See LICENSE for licensing information */
-/* $Id$ */
-const char tor_main_c_id[] =
-  "$Id$";
 
 
 /** String describing which Tor subversion repository version the source was
 /** String describing which Tor subversion repository version the source was
  * built from.  This string is generated by a bit of shell kludging int
  * built from.  This string is generated by a bit of shell kludging int

+ 0 - 1
src/tools/tor-gencert.c

@@ -1,6 +1,5 @@
 /* Copyright (c) 2007-2008 The Tor Project, Inc. */
 /* Copyright (c) 2007-2008 The Tor Project, Inc. */
 /* See LICENSE for licensing information */
 /* See LICENSE for licensing information */
-/* $Id: /tor/trunk/src/tools/tor-resolve.c 12481 2007-04-21T17:27:19.371353Z nickm  $ */
 
 
 #include "orconfig.h"
 #include "orconfig.h"
 
 

+ 0 - 1
src/tools/tor-resolve.c

@@ -2,7 +2,6 @@
  * Copyright (c) 2007-2008, The Tor Project, Inc.
  * Copyright (c) 2007-2008, The Tor Project, Inc.
  */
  */
 /* See LICENSE for licensing information */
 /* See LICENSE for licensing information */
-/* $Id$ */
 
 
 #include "orconfig.h"
 #include "orconfig.h"
 
 

+ 0 - 1
src/win32/orconfig.h

@@ -1,4 +1,3 @@
-/* $Id */
 /* orconfig.h for Windows -- This file is *not* generated by autoconf.
 /* orconfig.h for Windows -- This file is *not* generated by autoconf.
  * Instead, it has to be hand-edited to keep Win32 happy.
  * Instead, it has to be hand-edited to keep Win32 happy.
  */
  */