diff options
author | Nick Mathewson <nickm@torproject.org> | 2004-10-27 21:14:11 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2004-10-27 21:14:11 +0000 |
commit | 2fbf31533ba595c3c0ba6a0c1349208fbdfb498a (patch) | |
tree | 226089a8ad38086deea48477c9484a7b72e574b8 /src/or/circuitlist.c | |
parent | ce5709184bef665a545bcbf207598ad0f991a67b (diff) | |
download | tor-2fbf31533ba595c3c0ba6a0c1349208fbdfb498a.tar.gz tor-2fbf31533ba595c3c0ba6a0c1349208fbdfb498a.zip |
Tricksy compiler warnings! We hates them, hates them forever, my precious!
svn:r2615
Diffstat (limited to 'src/or/circuitlist.c')
-rw-r--r-- | src/or/circuitlist.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/circuitlist.c b/src/or/circuitlist.c index 5611a7eb09..dc90b9bc99 100644 --- a/src/or/circuitlist.c +++ b/src/or/circuitlist.c @@ -17,7 +17,7 @@ extern or_options_t options; /* command-line and config-file options */ circuit_t *global_circuitlist=NULL; /** Array of strings to make circ-\>state human-readable */ -char *circuit_state_to_string[] = { +const char *circuit_state_to_string[] = { "doing handshakes", /* 0 */ "processing the onion", /* 1 */ "connecting to firsthop", /* 2 */ |