diff options
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 4c4975257..63adb408d 100644 --- a/src/or/connection.c +++ b/src/or/connection.c @@ -767,7 +767,7 @@ int connection_process_cell_from_inbuf(connection_t *conn) { printf("\n"); #endif - /* retrieve cell info from outbuf (create the struct from the string) */ + /* retrieve cell info from outbuf (create the host-order struct from the network-order string) */ memset(&cell,0,sizeof(cell_t)); /* zero it out to start */ cell.aci = ntohs(*(aci_t *)outbuf); cell.command = *(outbuf+2); |