diff options
author | Roger Dingledine <arma@torproject.org> | 2003-02-18 01:35:55 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2003-02-18 01:35:55 +0000 |
commit | 1714ea2ab87b7ee4ee393ad41b9f9cbf543c29cc (patch) | |
tree | ea0fc98ee6c2d1808af7ffec7fd18d6b38086425 /src/or/connection.c | |
parent | 584a4fc4dd84335932b57621446930ed4bd9d4e8 (diff) | |
download | tor-1714ea2ab87b7ee4ee393ad41b9f9cbf543c29cc.tar.gz tor-1714ea2ab87b7ee4ee393ad41b9f9cbf543c29cc.zip |
Bugfixes and enhancements in sendmes and dns farm
svn:r161
Diffstat (limited to 'src/or/connection.c')
-rw-r--r-- | src/or/connection.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/connection.c b/src/or/connection.c index fd16c195c5..0e7847a64d 100644 --- a/src/or/connection.c +++ b/src/or/connection.c @@ -512,7 +512,7 @@ int connection_send_destroy(aci_t aci, connection_t *conn) { return connection_write_cell_to_buf(&cell, conn); } -int connection_write_cell_to_buf(cell_t *cellp, connection_t *conn) { +int connection_write_cell_to_buf(const cell_t *cellp, connection_t *conn) { char networkcell[CELL_NETWORK_SIZE]; char *n = networkcell; |