git: 9front

Download patch

ref: 7fa5db9d6a8d3b7d1430cab7df9fda9b8ee1ec0b
parent: b73d0d12fb1a274f854e7aa24bd3f35bebcc98a2
author: Jacob Moody <moody@posixcafe.org>
date: Wed Oct 30 17:45:26 EDT 2024

aux/listen: remove namespace from procsetname.

This is typically nil, so a bit of an eyesore in pstree.
Not as important as the other entries for differentiating either.

--- a/sys/src/cmd/aux/listen.c
+++ b/sys/src/cmd/aux/listen.c
@@ -174,7 +174,7 @@
 		return;
 	}
 
-	procsetname("%s %s %s %s", protodir, addr, srvdir, namespace);
+	procsetname("%s %s %s", protodir, addr, srvdir);
 	if (!trusted)
 		becomenone();
 
--