Description: fix ftbfs on gcc-14
Author: Bo YU <tsu.yubo@gmail.com>
Applied-Upstream: https://github.com/VIDA-NYU/reprozip/commit/dc7e12b2233fbdd8a186b138aa5be0525d2f3615
Bug-Debian: https://bugs.debian.org/1075445
Last-Update: 2024-11-20
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/native/syscalls.c
+++ b/native/syscalls.c
@@ -861,7 +861,7 @@
     {
         struct sockaddr_un *address_ = address;
         char buf[109];
-        strncpy(buf, &address_->sun_path, 108);
+        strncpy(buf, address_->sun_path, 108);
         buf[108] = 0;
         log_info(process->tid, "%s unix:%s", msg, buf);
 
