diff options
author | Nick Mathewson <nickm@torproject.org> | 2005-05-07 05:55:06 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2005-05-07 05:55:06 +0000 |
commit | 10b2208d9386972b76f10c2557562b5912dd130e (patch) | |
tree | 007a393aff385b1cbe47ffdc4d377edb5dac9898 /src/or/command.c | |
parent | 6567ec9ccf108ac2b51da77fff5e00b722640765 (diff) | |
download | tor-10b2208d9386972b76f10c2557562b5912dd130e.tar.gz tor-10b2208d9386972b76f10c2557562b5912dd130e.zip |
Make Tor compile with no warnings with gcc4.0 on OSX
svn:r4184
Diffstat (limited to 'src/or/command.c')
-rw-r--r-- | src/or/command.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/or/command.c b/src/or/command.c index fe476d4af3..fc000e955a 100644 --- a/src/or/command.c +++ b/src/or/command.c @@ -196,8 +196,8 @@ static void command_process_create_cell(cell_t *cell, connection_t *conn) { } log_fn(LOG_DEBUG,"success: handed off onionskin."); } else { - unsigned char keys[CPATH_KEY_MATERIAL_LEN]; - unsigned char reply[DIGEST_LEN*2]; + char keys[CPATH_KEY_MATERIAL_LEN]; + char reply[DIGEST_LEN*2]; tor_assert(cell->command == CELL_CREATE_FAST); if (fast_server_handshake(cell->payload, reply, keys, sizeof(keys))<0) { log_fn(LOG_WARN,"Failed to generate key material. Closing."); |