From 2c5514ef5f0cba94e8ce9b5603d0e58b335e7de1 Mon Sep 17 00:00:00 2001 From: Sree Harsha Totakura Date: Sun, 12 Feb 2012 12:33:13 +0000 Subject: [PATCH] -fixed ntoh64 to GNUNET_ntohll --- src/stream/stream_api.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stream/stream_api.c b/src/stream/stream_api.c index c25cb6c9b..0f88af92b 100644 --- a/src/stream/stream_api.c +++ b/src/stream/stream_api.c @@ -1163,7 +1163,7 @@ handle_ack (struct GNUNET_STREAM_Socket *socket, return GNUNET_OK; } - socket->write_handle->ack_bitmap = ntoh64 (ack->bitmap); + socket->write_handle->ack_bitmap = GNUNET_ntohll (ack->bitmap); socket->write_handle->receive_window_available = ntohl (ack->receive_window_remaining); write_data (socket); -- 2.25.1