Browse Source

Fix white spaces

dynamic-accesslists
erdgeist 14 years ago
parent
commit
3baa1abc56
  1. 4
      ot_http.c
  2. 2
      ot_stats.c

4
ot_http.c

@ -46,7 +46,7 @@ static void http_senddata( const int64 sock, struct ot_workstruct *ws ) { @@ -46,7 +46,7 @@ static void http_senddata( const int64 sock, struct ot_workstruct *ws ) {
ssize_t written_size;
if( !cookie ) { io_close(sock); return; }
/* whoever sends data is not interested in its input-array */
if( ws->keep_alive && ws->header_size != ws->request_size ) {
size_t rest = ws->request_size - ws->header_size;
@ -55,7 +55,7 @@ static void http_senddata( const int64 sock, struct ot_workstruct *ws ) { @@ -55,7 +55,7 @@ static void http_senddata( const int64 sock, struct ot_workstruct *ws ) {
array_truncate( &cookie->request, 1, rest );
} else
array_catb(&cookie->request, ws->request + ws->header_size, rest );
} else
} else
array_reset( &cookie->request );
written_size = write( sock, ws->reply, ws->reply_size );

2
ot_stats.c

@ -168,7 +168,7 @@ static size_t stats_get_highscore_networks( stats_network_node *node, int depth, @@ -168,7 +168,7 @@ static size_t stats_get_highscore_networks( stats_network_node *node, int depth,
node_score = stats_get_highscore_networks( node->children[i], depth+STATS_NETWORK_NODE_BITWIDTH, node_value, scores, networks, network_count, limit );
score += node_score;
if( node_score <= scores[0] ) continue;
__STR(node_value,depth,i);

Loading…
Cancel
Save