aboutsummaryrefslogtreecommitdiff
path: root/shell
diff options
context:
space:
mode:
authorandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>2002-04-24 23:14:06 +0000
committerandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>2002-04-24 23:14:06 +0000
commit8a4c69b90d3e3a9fb967290b4522a9d884f615ac (patch)
tree87d3a9745468011139c0466bfad6c078fc026ec5 /shell
parent148f6c54337a16bfa902a1e0756fb26cc788ae6a (diff)
downloadbusybox-w32-8a4c69b90d3e3a9fb967290b4522a9d884f615ac.tar.gz
busybox-w32-8a4c69b90d3e3a9fb967290b4522a9d884f615ac.tar.bz2
busybox-w32-8a4c69b90d3e3a9fb967290b4522a9d884f615ac.zip
vodz noted this line (as imported from Debian) is wrong, and has since
been fixed upstream. git-svn-id: svn://busybox.net/trunk/busybox@4653 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'shell')
-rw-r--r--shell/ash.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/shell/ash.c b/shell/ash.c
index c77bfec4f..e721c4ee5 100644
--- a/shell/ash.c
+++ b/shell/ash.c
@@ -6754,7 +6754,7 @@ waitforjob(struct job *jp)
6754 if (!iflag) { 6754 if (!iflag) {
6755#endif 6755#endif
6756 sigaction(SIGINT, &oact, 0); 6756 sigaction(SIGINT, &oact, 0);
6757 if (intreceived && trap[SIGINT]) kill(getpid(), SIGINT); 6757 if (intreceived) kill(getpid(), SIGINT);
6758 } 6758 }
6759#ifdef CONFIG_ASH_JOB_CONTROL 6759#ifdef CONFIG_ASH_JOB_CONTROL
6760 if (jp->jobctl) { 6760 if (jp->jobctl) {
@@ -12433,7 +12433,7 @@ findvar(struct var **vpp, const char *name)
12433/* 12433/*
12434 * Copyright (c) 1999 Herbert Xu <herbert@debian.org> 12434 * Copyright (c) 1999 Herbert Xu <herbert@debian.org>
12435 * This file contains code for the times builtin. 12435 * This file contains code for the times builtin.
12436 * $Id: ash.c,v 1.47 2002/04/13 05:37:10 timr Exp $ 12436 * $Id: ash.c,v 1.48 2002/04/24 23:12:10 andersen Exp $
12437 */ 12437 */
12438static int timescmd (int argc, char **argv) 12438static int timescmd (int argc, char **argv)
12439{ 12439{