shithub: front

Download patch

ref: 1454ec6425d0cc4f06f54d49df4b723a2f2fab1a
parent: 61f028fdacb96dddf66d5ff2edeefc530a00cb58
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();
 
--