Return-Path: Delivered-To: apmail-tcl-websh-cvs-archive@www.apache.org Received: (qmail 79959 invoked from network); 26 Jun 2009 14:24:56 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 26 Jun 2009 14:24:56 -0000 Received: (qmail 64711 invoked by uid 500); 26 Jun 2009 14:25:07 -0000 Delivered-To: apmail-tcl-websh-cvs-archive@tcl.apache.org Received: (qmail 64696 invoked by uid 500); 26 Jun 2009 14:25:07 -0000 Mailing-List: contact websh-cvs-help@tcl.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Delivered-To: mailing list websh-cvs@tcl.apache.org Received: (qmail 64687 invoked by uid 99); 26 Jun 2009 14:25:07 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 26 Jun 2009 14:25:07 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 26 Jun 2009 14:25:05 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 71AB123888A0; Fri, 26 Jun 2009 14:24:45 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r788716 - /tcl/websh/trunk/src/generic/logutl.c Date: Fri, 26 Jun 2009 14:24:45 -0000 To: websh-cvs@tcl.apache.org From: ronnie@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20090626142445.71AB123888A0@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: ronnie Date: Fri Jun 26 14:24:45 2009 New Revision: 788716 URL: http://svn.apache.org/viewvc?rev=788716&view=rev Log: - properly return TCL_ERROR in sendMsgToDestList Modified: tcl/websh/trunk/src/generic/logutl.c Modified: tcl/websh/trunk/src/generic/logutl.c URL: http://svn.apache.org/viewvc/tcl/websh/trunk/src/generic/logutl.c?rev=788716&r1=788715&r2=788716&view=diff ============================================================================== --- tcl/websh/trunk/src/generic/logutl.c (original) +++ tcl/websh/trunk/src/generic/logutl.c Fri Jun 26 14:24:45 2009 @@ -129,7 +129,7 @@ if ((interp == NULL) || (logDests == NULL) || (logLevel == NULL) || (msg == NULL)) - return; + return TCL_ERROR; for (i = 0; i < logData->destSize; i++) { --------------------------------------------------------------------- To unsubscribe, e-mail: websh-cvs-unsubscribe@tcl.apache.org For additional commands, e-mail: websh-cvs-help@tcl.apache.org