aboutsummaryrefslogtreecommitdiff
path: root/src/util/client.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2009-05-29 02:39:55 +0000
committerChristian Grothoff <christian@grothoff.org>2009-05-29 02:39:55 +0000
commit36ccc5b502d85f9fcf212e30fa9f1a0787de73ab (patch)
tree4020c41421f7a5df3cee172e128a07047eaf3848 /src/util/client.c
parent9bf34bae8102d0c20b36008ce10c2695a658c4d5 (diff)
downloadgnunet-36ccc5b502d85f9fcf212e30fa9f1a0787de73ab.tar.gz
gnunet-36ccc5b502d85f9fcf212e30fa9f1a0787de73ab.zip
removing server from argument list, other minor fixes
Diffstat (limited to 'src/util/client.c')
-rw-r--r--src/util/client.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/util/client.c b/src/util/client.c
index 9dd70f266..e9b3f985a 100644
--- a/src/util/client.c
+++ b/src/util/client.c
@@ -202,8 +202,8 @@ check_complete (struct GNUNET_CLIENT_Connection *conn)
202{ 202{
203 if ((conn->received_pos >= sizeof (struct GNUNET_MessageHeader)) && 203 if ((conn->received_pos >= sizeof (struct GNUNET_MessageHeader)) &&
204 (conn->received_pos >= 204 (conn->received_pos >=
205 ntohs (((const struct GNUNET_MessageHeader *) conn->received_buf)-> 205 ntohs (((const struct GNUNET_MessageHeader *) conn->
206 size))) 206 received_buf)->size)))
207 conn->msg_complete = GNUNET_YES; 207 conn->msg_complete = GNUNET_YES;
208} 208}
209 209