From 45e5483b1bd538db7a06589fe25a6ad3e5dd6e32 Mon Sep 17 00:00:00 2001 From: Loic Guegan Date: Fri, 2 Feb 2024 13:25:57 +0100 Subject: [PATCH] Minor changes --- src/publisher.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/publisher.c b/src/publisher.c index b3945f5..ff3dded 100644 --- a/src/publisher.c +++ b/src/publisher.c @@ -76,7 +76,7 @@ int main(int argc, char *argv[]) { // Path of the break file (if found, publisher will stop publishing) char break_file[STATIC_LEN]; strcat(break_file, "publisher_"); - strcat(break_file, key); + strcat(break_file, client); strcat(break_file, "_break"); printf("Create to following file to stop publishing (max wakeup latency will be %ds): %s\n",BREAK_DURATION,break_file);