diff options
Diffstat (limited to 'src/or/buffers.c')
-rw-r--r-- | src/or/buffers.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/buffers.c b/src/or/buffers.c index 5b4053c90d..45d2b74ddb 100644 --- a/src/or/buffers.c +++ b/src/or/buffers.c @@ -51,7 +51,7 @@ int read_to_buf(int s, int at_most, char **buf, int *buflen, int *buf_datalen, i /* if no linkpadding: do a rudimentary round-robin so one * connection can't hog an outgoing connection */ - at_most = 10*sizeof(cell_t); + at_most = 10*sizeof(cell_t); /* FIXME should be 10* size of usable payload */ } // log(LOG_DEBUG,"read_to_buf(): reading at most %d bytes.",at_most); |