[sniffer] Re: [Declude.JunkMail] Errorlevel not working

2009-02-08 Thread Andy Schmidt
Serge: "if errorlevel 0" means "if errorlevel >= 0". You are NOT comparing to "equal" - it will return TRUE if the error level is AT LEAST the number 0 - which is true for any positive value. Best Regards, Andy -Original Message- From: supp...@declude.com [mailto:supp...@declude.com] On

[sniffer] Re: [Declude.JunkMail] Errorlevel not working

2009-02-08 Thread Sanford Whiteman
> I have a problem with the branching in the batch below > even when the test fails and "echo %errorlevel% " shows 1 > the branching still goes to gziperr0 > Does enyone knows why and how to fix ? When you echo the errorlevel, the errorlevel is reset to the value returned by echo(). --Sandy