components/tcsh/patches/004.tcsh-6.14.00-avoid_null_for_cwd.patch
branchs11-update
changeset 2494 c2dd5561bf4f
parent 2493 9911278899a3
child 2498 0047431f98e9
--- a/components/tcsh/patches/004.tcsh-6.14.00-avoid_null_for_cwd.patch	Thu Feb 14 18:44:43 2013 -0800
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,12 +0,0 @@
-diff -up tcsh-6.14.00/sh.proc.c.orig tcsh-6.14.00/sh.proc.c
---- tcsh-6.14.00/sh.proc.c.orig	2010-09-08 10:31:31.000000000 +0200
-+++ tcsh-6.14.00/sh.proc.c	2010-09-08 10:48:07.996573506 +0200
-@@ -396,7 +396,7 @@ found:
- #ifdef notdef
- 		jobflags & PAEXITED ||
- #endif /* notdef */
--		!eq(dcwd->di_name, fp->p_cwd->di_name))) {
-+		fp->p_cwd == NULL || !eq(dcwd->di_name, fp->p_cwd->di_name))) {
- 	    /* PWP: print a newline after ^C */
- 		if (jobflags & PINTERRUPTED) {
- #ifdef SHORT_STRINGS