summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog1
-rw-r--r--src/or/circuitlist.c8
-rw-r--r--src/or/config.c2
-rw-r--r--src/or/router.c2
4 files changed, 9 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index 8104ce09a2..0f515ba835 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -144,6 +144,7 @@ Changes in version 0.2.0.1-alpha - 2007-??-??
- Add even more asserts to hunt down bug 417.
- On Windows, we were preventing other processes from reading
cached-routers while Tor was running. (Reported by janbar)
+ - Build without verbose warnings even on (not-yet-released) gcc 4.2
o Minor bugfixes (controller):
- Make 'getinfo fingerprint' return a 551 error if we're not a
diff --git a/src/or/circuitlist.c b/src/or/circuitlist.c
index 5580bd0394..44f0566596 100644
--- a/src/or/circuitlist.c
+++ b/src/or/circuitlist.c
@@ -1116,16 +1116,20 @@ assert_circuit_ok(const circuit_t *c)
edge_connection_t *conn;
const or_circuit_t *or_circ = NULL;
const origin_circuit_t *origin_circ = NULL;
+ circuit_t *nonconst_circ;
tor_assert(c);
tor_assert(c->magic == ORIGIN_CIRCUIT_MAGIC || c->magic == OR_CIRCUIT_MAGIC);
tor_assert(c->purpose >= _CIRCUIT_PURPOSE_MIN &&
c->purpose <= _CIRCUIT_PURPOSE_MAX);
+ /* Having a separate variable for this pleases GCC 4.2 in ways I hop I never
+ * understand. -NM. */
+ nonconst_circ = (circuit_t*) c;
if (CIRCUIT_IS_ORIGIN(c))
- origin_circ = TO_ORIGIN_CIRCUIT((circuit_t*)c);
+ origin_circ = TO_ORIGIN_CIRCUIT(nonconst_circ);
else
- or_circ = TO_OR_CIRCUIT((circuit_t*)c);
+ or_circ = TO_OR_CIRCUIT(nonconst_circ);
if (c->n_conn) {
tor_assert(!memcmp(c->n_conn->identity_digest, c->n_conn_id_digest,
diff --git a/src/or/config.c b/src/or/config.c
index 71f18f314a..7b6fa169dd 100644
--- a/src/or/config.c
+++ b/src/or/config.c
@@ -3113,7 +3113,7 @@ options_init_from_torrc(int argc, char **argv)
if (argc > 1 && (!strcmp(argv[1],"--version"))) {
char vbuf[128];
- if (tor_svn_revision && strlen(tor_svn_revision)) {
+ if (tor_svn_revision != NULL && strlen(tor_svn_revision)) {
tor_snprintf(vbuf, sizeof(vbuf), " (r%s)", tor_svn_revision);
} else {
vbuf[0] = 0;
diff --git a/src/or/router.c b/src/or/router.c
index 8937e04271..d510b93282 100644
--- a/src/or/router.c
+++ b/src/or/router.c
@@ -1244,7 +1244,7 @@ get_platform_str(char *platform, size_t len)
{
char svn_version_buf[128];
if (!strcmpend(VERSION, "-dev") &&
- tor_svn_revision && strlen(tor_svn_revision)) {
+ tor_svn_revision != NULL && strlen(tor_svn_revision)) {
tor_snprintf(svn_version_buf, sizeof(svn_version_buf), " (r%s)",
tor_svn_revision);
} else {