about summary refs log tree commit diff
diff options
context:
space:
mode:
authorPeter Stephenson <pws@users.sourceforge.net>2005-01-24 11:02:59 +0000
committerPeter Stephenson <pws@users.sourceforge.net>2005-01-24 11:02:59 +0000
commitb80c6b0863127da4511abf2ebb1f9328db5730aa (patch)
treec9340de0ddd16cbec6ab83c97057252ca7cd9930
parent95a65e158169d61d9257ed6859bfc7527a9e0468 (diff)
downloadzsh-b80c6b0863127da4511abf2ebb1f9328db5730aa.tar.gz
zsh-b80c6b0863127da4511abf2ebb1f9328db5730aa.tar.xz
zsh-b80c6b0863127da4511abf2ebb1f9328db5730aa.zip
users/8422: [[ ... -nt ... ]] with bad stat caused
mayhem in initialisation files, functions, etc.
-rw-r--r--ChangeLog7
-rw-r--r--Src/cond.c2
2 files changed, 8 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 9285ce159..61523ad2b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2005-01-24  Peter Stephenson  <pws@csr.com>
+
+	* users/8422: Src/cond.c: [[ ... -nt ... ]] and [[ ... -ot ... ]]
+	with non-existent files (or any failed state) were recorded
+	as errors, causing initialisation scripts, functions, etc., etc.
+	to exit.
+
 2005-01-23  Clint Adams  <clint@zsh.org>
 
 	* 20737, 20739: Completion/Unix/Command/_subversion: run svn
diff --git a/Src/cond.c b/Src/cond.c
index a720ec69a..aa808715f 100644
--- a/Src/cond.c
+++ b/Src/cond.c
@@ -336,7 +336,7 @@ evalcond(Estate state, char *fromtest)
 		return 1;
 	    a = st->st_mtime;
 	    if (!(st = getstat(right)))
-		return 2;
+		return 1;
 	    return !((ctype == COND_NT) ? a > st->st_mtime : a < st->st_mtime);
 	}
     case COND_EF: