components/tcsh/patches/004.tcsh-6.14.00-avoid_null_for_cwd.patch
changeset 1073 c80b2ce240a9
parent 1072 75ddf7807870
child 1074 8ae50a0d434a
--- a/components/tcsh/patches/004.tcsh-6.14.00-avoid_null_for_cwd.patch	Wed Dec 05 16:42:34 2012 -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