From 9aebcc5ac1174f38381a43fa35ccb42ca3464d0e Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Fredrik=20H=C3=BCbinette=20=28Hubbe=29?= <hubbe@hubbe.net>
Date: Fri, 15 Jan 1999 16:27:17 -0800
Subject: [PATCH] fixed a typo

Rev: src/signal_handler.c:1.97
---
 src/signal_handler.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/signal_handler.c b/src/signal_handler.c
index ede452f585..5e71b0129d 100644
--- a/src/signal_handler.c
+++ b/src/signal_handler.c
@@ -23,7 +23,7 @@
 #include "builtin_functions.h"
 #include <signal.h>
 
-RCSID("$Id: signal_handler.c,v 1.96 1999/01/08 09:05:46 hubbe Exp $");
+RCSID("$Id: signal_handler.c,v 1.97 1999/01/16 00:27:17 hubbe Exp $");
 
 #ifdef HAVE_PASSWD_H
 # include <passwd.h>
@@ -586,7 +586,7 @@ static void f_pid_status_wait(INT32 args)
 	key.type=T_INT;
 	key.u.integer=pid;
 	s=low_mapping_lookup(pid_mapping, &key);
-	if(s && s->type == T_OBJECT || s->u.object == fp->current_object)
+	if(s && s->type == T_OBJECT && s->u.object == fp->current_object)
 	{
 	  errorcount++;
 	  if(errorcount==50)
-- 
GitLab