aboutsummarylogtreecommitdiffstats
path: root/util.c
diff options
context:
space:
mode:
authorAnselm R. Garbe2006-08-28 08:17:27 +0200
committerAnselm R. Garbe2006-08-28 08:17:27 +0200
commit913c7cdf33fca487e106eba2f1ddfb4c6a7e5600 (patch)
treecc00d9e506bbac4cce90a4a51cc0a039f289ec07 /util.c
parent3de4f981ac3ba302a0d9582194638c5f2f9cafbf (diff)
downloadaur-913c7cdf33fca487e106eba2f1ddfb4c6a7e5600.tar.gz
added a comment to spawn
Diffstat (limited to 'util.c')
-rw-r--r--util.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/util.c b/util.c
index e19e3e97103c..91df00b17e64 100644
--- a/util.c
+++ b/util.c
@@ -51,6 +51,7 @@ spawn(Arg *arg)
if(!arg->cmd)
return;
+ /* the double-fork construct avoids zombie processes */
if(fork() == 0) {
if(fork() == 0) {
if(dpy)