[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
[or-cvs] r8229: remove some more vestiges of cvs (tor/trunk/src/or)
Author: arma
Date: 2006-08-26 02:51:02 -0400 (Sat, 26 Aug 2006)
New Revision: 8229
Modified:
tor/trunk/src/or/config.c
tor/trunk/src/or/routerparse.c
Log:
remove some more vestiges of cvs
Modified: tor/trunk/src/or/config.c
===================================================================
--- tor/trunk/src/or/config.c 2006-08-26 04:52:22 UTC (rev 8228)
+++ tor/trunk/src/or/config.c 2006-08-26 06:51:02 UTC (rev 8229)
@@ -391,7 +391,7 @@
static uint64_t config_parse_memunit(const char *s, int *ok);
static int config_parse_interval(const char *s, int *ok);
-static void print_cvs_version(void);
+static void print_svn_version(void);
static void init_libevent(void);
static int opt_streq(const char *s1, const char *s2);
typedef enum {
@@ -2712,7 +2712,7 @@
if (argc > 1 && (!strcmp(argv[1],"--version"))) {
printf("Tor version %s.\n",VERSION);
if (argc > 2 && (!strcmp(argv[2],"--version"))) {
- print_cvs_version();
+ print_svn_version();
}
exit(0);
}
@@ -4013,7 +4013,7 @@
/** Dump the version of every file to the log. */
static void
-print_cvs_version(void)
+print_svn_version(void)
{
puts(AES_H_ID);
puts(COMPAT_H_ID);
Modified: tor/trunk/src/or/routerparse.c
===================================================================
--- tor/trunk/src/or/routerparse.c 2006-08-26 04:52:22 UTC (rev 8228)
+++ tor/trunk/src/or/routerparse.c 2006-08-26 06:51:02 UTC (rev 8229)
@@ -1852,7 +1852,7 @@
if (!eos || eos==cp) return -1;
cp = eos;
- /* Get cvs status and status tag. */
+ /* Get status tag. */
if (*cp == '-' || *cp == '.')
++cp;
strlcpy(out->status_tag, cp, sizeof(out->status_tag));