aboutsummaryrefslogtreecommitdiff
path: root/src/testing
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2013-09-26 18:48:59 +0000
committerChristian Grothoff <christian@grothoff.org>2013-09-26 18:48:59 +0000
commitfa7d6b32530d3d8c2d7e542a15319c74c22061b6 (patch)
tree8f4c7615c89f646a66fc709b698ef81becdf1ad1 /src/testing
parentd79a03493ba5d0581e828724a402a2054429e7be (diff)
downloadgnunet-fa7d6b32530d3d8c2d7e542a15319c74c22061b6.tar.gz
gnunet-fa7d6b32530d3d8c2d7e542a15319c74c22061b6.zip
moving from abstract unix domain socket paths to normal unix domain socket paths (#2887), removing now unnecessary/dead flags argument to GNUNET_NETWORK_socket_bind
Diffstat (limited to 'src/testing')
-rw-r--r--src/testing/testing.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/testing/testing.c b/src/testing/testing.c
index 8502809f3..7f5154a4c 100644
--- a/src/testing/testing.c
+++ b/src/testing/testing.c
@@ -619,8 +619,7 @@ GNUNET_TESTING_reserve_port (struct GNUNET_TESTING_System *system)
619 continue; 619 continue;
620 bind_status = GNUNET_NETWORK_socket_bind (socket, 620 bind_status = GNUNET_NETWORK_socket_bind (socket,
621 ai->ai_addr, 621 ai->ai_addr,
622 ai->ai_addrlen, 622 ai->ai_addrlen);
623 0);
624 GNUNET_NETWORK_socket_close (socket); 623 GNUNET_NETWORK_socket_close (socket);
625 if (GNUNET_OK != bind_status) 624 if (GNUNET_OK != bind_status)
626 break; 625 break;
@@ -629,8 +628,7 @@ GNUNET_TESTING_reserve_port (struct GNUNET_TESTING_System *system)
629 continue; 628 continue;
630 bind_status = GNUNET_NETWORK_socket_bind (socket, 629 bind_status = GNUNET_NETWORK_socket_bind (socket,
631 ai->ai_addr, 630 ai->ai_addr,
632 ai->ai_addrlen, 631 ai->ai_addrlen);
633 0);
634 GNUNET_NETWORK_socket_close (socket); 632 GNUNET_NETWORK_socket_close (socket);
635 if (GNUNET_OK != bind_status) 633 if (GNUNET_OK != bind_status)
636 break; 634 break;