ash: re-enable SIGHUP on entry. Closes bug 771.

Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
diff --git a/shell/ash.c b/shell/ash.c
index cf406a4..5d0fc6d 100644
--- a/shell/ash.c
+++ b/shell/ash.c
@@ -13016,6 +13016,10 @@
 
 	/* from trap.c: */
 	signal(SIGCHLD, SIG_DFL);
+	/* bash re-enables SIGHUP which is SIG_IGNed on entry.
+	 * Try: "trap '' HUP; bash; echo RET" and type "kill -HUP $$"
+	 */
+        signal(SIGHUP, SIG_DFL);
 
 	/* from var.c: */
 	{