From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mail-wi0-f169.google.com (mail-wi0-f169.google.com [209.85.212.169]); by fantadrom.bsd.lv (OpenSMTPD) with ESMTP id 064bdef6; for ; Mon, 2 Mar 2015 05:55:24 -0500 (EST) Received: by widex7 with SMTP id ex7so13768756wid.0 for ; Mon, 02 Mar 2015 02:55:22 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:date:from:to:subject:message-id:mime-version:content-type :content-disposition:user-agent; bh=V5ijbMYC/MrF1P60we2e56dT5gKIUWPqgXpEw+3Bm20=; b=KLupUPSpB64yu0i+mU/y80QKDkIA35wEDdd3NEflehQmKiN7bJFIqqe/iKxjBXa7A0 Ysh9sQ6XHFH4is+4hzm41ZBRnhCR3WTtFYFYTKDxiOCQo/Kij38INcyinlM1Ah4bCaz4 7/U9lGQ8TUrIqeJWqQu6Wm7VzDVmbrKz3QF1EF6WXDzq7epD9u8a3POv8QmJutyWMXAS rIUjTwrWH48njeypoSdU4eScwd/mjvIb0MpD+ZejfNmfbBKZ/MIFcppIrVK7nKqvR3l3 hSyYJcNJ1spjcS4WPvv5yOOFYJ2whF1+yslHyWWWYp+Os1p/4oj2tE6XlKq3tvLgbsHV 8zMg== X-Received: by 10.180.108.103 with SMTP id hj7mr33897407wib.90.1425293722678; Mon, 02 Mar 2015 02:55:22 -0800 (PST) Received: from ivaldir.etoilebsd.net ([2001:41d0:8:db4c::1]) by mx.google.com with ESMTPSA id fu1sm15559644wic.2.2015.03.02.02.55.21 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Mon, 02 Mar 2015 02:55:21 -0800 (PST) Sender: Baptiste Daroussin Date: Mon, 2 Mar 2015 11:55:19 +0100 From: Baptiste Daroussin To: tech@mdocml.bsd.lv Subject: [PATCH] Fix "Wait: No Child Process" Message-ID: <20150302105519.GO13897@ivaldir.etoilebsd.net> X-Mailinglist: mdocml-tech Reply-To: tech@mdocml.bsd.lv MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="vzUQzca511KWT6Hk" Content-Disposition: inline User-Agent: Mutt/1.5.23 (2014-03-12) --vzUQzca511KWT6Hk Content-Type: multipart/mixed; boundary="RHdRtM27np9fZUoh" Content-Disposition: inline --RHdRtM27np9fZUoh Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Hi, Here is a small patch to fix mandoc complaining about no child process when .gz manpages are being read. Best regards, Bapt --RHdRtM27np9fZUoh Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="read.c.diff" Content-Transfer-Encoding: quoted-printable Index: read.c =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /cvs/mdocml/read.c,v retrieving revision 1.128 diff -u -r1.128 read.c --- read.c 23 Feb 2015 13:31:04 -0000 1.128 +++ read.c 2 Mar 2015 10:50:12 -0000 @@ -878,6 +878,7 @@ "gunzip failed with code %d", WEXITSTATUS(status)); return(MANDOCLEVEL_ERROR); } + curp->child =3D 0; return(MANDOCLEVEL_OK); } =20 --RHdRtM27np9fZUoh-- --vzUQzca511KWT6Hk Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1 iEYEARECAAYFAlT0QZcACgkQ8kTtMUmk6EzcMwCgnop9r/90Wkb0Sb6aWTWoHiN4 uoIAoJurm/xq+2XobPHZnedl4filqvRu =fGBC -----END PGP SIGNATURE----- --vzUQzca511KWT6Hk-- -- To unsubscribe send an email to tech+unsubscribe@mdocml.bsd.lv