aboutsummaryrefslogtreecommitdiff
path: root/src/dhtu
diff options
context:
space:
mode:
Diffstat (limited to 'src/dhtu')
-rw-r--r--src/dhtu/testing_dhtu_cmd_send.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dhtu/testing_dhtu_cmd_send.c b/src/dhtu/testing_dhtu_cmd_send.c
index fe8e1c18a..45d166b14 100644
--- a/src/dhtu/testing_dhtu_cmd_send.c
+++ b/src/dhtu/testing_dhtu_cmd_send.c
@@ -107,12 +107,12 @@ GNUNET_TESTING_DHTU_cmd_send (const char *label)
107 { 107 {
108 struct GNUNET_TESTING_Command cmd = { 108 struct GNUNET_TESTING_Command cmd = {
109 .cls = ss, 109 .cls = ss,
110 .label = label,
111 .run = &send_run, 110 .run = &send_run,
112 .ac = &ss->ac, 111 .ac = &ss->ac,
113 .cleanup = &send_cleanup, 112 .cleanup = &send_cleanup,
114 .traits = &send_traits 113 .traits = &send_traits
115 }; 114 };
115 strncpy (cmd.label, label, GNUNET_TESTING_CMD_MAX_LABEL_LENGTH);
116 116
117 return cmd; 117 return cmd;
118 } 118 }