aboutsummaryrefslogtreecommitdiff
path: root/src/testing/testing_group.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/testing/testing_group.c')
-rw-r--r--src/testing/testing_group.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/testing/testing_group.c b/src/testing/testing_group.c
index 467fab053..744e505ce 100644
--- a/src/testing/testing_group.c
+++ b/src/testing/testing_group.c
@@ -792,7 +792,7 @@ create_and_copy_friend_files (struct GNUNET_TESTING_PeerGroup *pg)
792 if (pg->peers[pg_iter].daemon->hostname == NULL) /* Local, just copy the file */ 792 if (pg->peers[pg_iter].daemon->hostname == NULL) /* Local, just copy the file */
793 { 793 {
794 GNUNET_asprintf (&arg, "%s/friends", temp_service_path); 794 GNUNET_asprintf (&arg, "%s/friends", temp_service_path);
795 pid = GNUNET_OS_start_process ("mv", 795 pid = GNUNET_OS_start_process (NULL, NULL, "mv",
796 "mv", mytemp, arg, NULL); 796 "mv", mytemp, arg, NULL);
797#if VERBOSE_TESTING 797#if VERBOSE_TESTING
798 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, 798 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
@@ -806,7 +806,7 @@ create_and_copy_friend_files (struct GNUNET_TESTING_PeerGroup *pg)
806 GNUNET_asprintf (&arg, "%s@%s:%s/friends", pg->peers[pg_iter].daemon->username, pg->peers[pg_iter].daemon->hostname, temp_service_path); 806 GNUNET_asprintf (&arg, "%s@%s:%s/friends", pg->peers[pg_iter].daemon->username, pg->peers[pg_iter].daemon->hostname, temp_service_path);
807 else 807 else
808 GNUNET_asprintf (&arg, "%s:%s/friends", pg->peers[pg_iter].daemon->hostname, temp_service_path); 808 GNUNET_asprintf (&arg, "%s:%s/friends", pg->peers[pg_iter].daemon->hostname, temp_service_path);
809 pid = GNUNET_OS_start_process ("scp", 809 pid = GNUNET_OS_start_process (NULL, NULL, "scp",
810 "scp", mytemp, arg, NULL); 810 "scp", mytemp, arg, NULL);
811#if VERBOSE_TESTING 811#if VERBOSE_TESTING
812 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, 812 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,