From 5373ab492f52dacdf5135995307b9ca32c25247b Mon Sep 17 00:00:00 2001 From: Taylor R Campbell Date: Tue, 20 Jun 2023 11:49:50 +0000 Subject: [PATCH] ipc: rk_UNCONST for private string not modified. --- lib/ipc/ts.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/ipc/ts.c b/lib/ipc/ts.c index 3ba5d6555..ef8d01f18 100644 --- a/lib/ipc/ts.c +++ b/lib/ipc/ts.c @@ -98,16 +98,16 @@ main(int argc, char **argv) { heim_sipc mach; heim_sipc_launchd_mach_init("org.h5l.test-ipc", - test_service, "MACH", &mach); + test_service, rk_UNCONST("MACH"), &mach); } #endif heim_sipc_service_unix("org.h5l.test-ipc", - test_service, "UNIX", &u); + test_service, rk_UNCONST("UNIX"), &u); #ifdef HAVE_DOOR_CREATE { heim_sipc door; heim_sipc_service_door("org.h5l.test-ipc", - test_service, "DOOR", &door); + test_service, rk_UNCONST("DOOR"), &door); } #endif heim_ipc_main();