aboutsummaryrefslogtreecommitdiff
path: root/shells/pdksh
diff options
context:
space:
mode:
authorThomas Gellekum <tg@FreeBSD.org>1999-07-21 06:20:45 +0000
committerThomas Gellekum <tg@FreeBSD.org>1999-07-21 06:20:45 +0000
commitcaf1d10b63b67d4427f18d83762b2c63cd4ed820 (patch)
treec0f0bdd14136ad78cb9dbcad853b564cca39fa9a /shells/pdksh
parent3b42b56e84c2de8582707312af9e72541eeb2598 (diff)
downloadports-caf1d10b63b67d4427f18d83762b2c63cd4ed820.tar.gz
ports-caf1d10b63b67d4427f18d83762b2c63cd4ed820.zip
Fix formatting glitch in job status output.
Submitted by: Michael Rendell <michael@cs.mun.ca>
Notes
Notes: svn path=/head/; revision=20293
Diffstat (limited to 'shells/pdksh')
-rw-r--r--shells/pdksh/files/patch-aa17
1 files changed, 17 insertions, 0 deletions
diff --git a/shells/pdksh/files/patch-aa b/shells/pdksh/files/patch-aa
new file mode 100644
index 000000000000..e2b07f548c96
--- /dev/null
+++ b/shells/pdksh/files/patch-aa
@@ -0,0 +1,17 @@
+--- jobs.c.orig Tue Jul 13 18:50:56 1999
++++ jobs.c Wed Jul 21 08:10:45 1999
+@@ -1846,6 +1846,7 @@
+ int alen;
+ char **ap;
+
++#if 0
+ if (t->type == TEXEC || t->type == TCOM) {
+ /* Causes problems when set -u is in effect, can also
+ cause problems when array indices evaluated (may have
+@@ -1870,5 +1871,6 @@
+ }
+ *c = '\0';
+ } else
++#endif
+ snptreef(c, len, "%T", t);
+ }