ash: revert "cat | jobs" fix, it causes more problems than good

diff --git a/shell/ash.c b/shell/ash.c
index 9d8b83c..8b21e65 100644
--- a/shell/ash.c
+++ b/shell/ash.c
@@ -4380,6 +4380,7 @@
 
 /* Lives far away from here, needed for forkchild */
 static void closescript(void);
+
 /* Called after fork(), in child */
 static void
 forkchild(struct job *jp, union node *n, int mode)
@@ -4424,15 +4425,8 @@
 		setsignal(SIGQUIT);
 		setsignal(SIGTERM);
 	}
-#if JOBS
-	/* For "jobs | cat" to work like in bash, we must retain list of jobs
-	 * in child, but we do need to remove ourself */
-	if (jp)
-		freejob(jp);
-#else
 	for (jp = curjob; jp; jp = jp->prev_job)
 		freejob(jp);
-#endif
 	jobless = 0;
 }