Commit 3da0edd1 3da0edd1626d8dd4da6623839e0af7ff0ba3b466 by Sergey Poznyakoff

(sieve_action_stop); Restored zero assignment to pc. This is possible due to the…

… changes to runtime.c
1 parent 1e7f70ff
......@@ -29,7 +29,7 @@ int
sieve_action_stop (sieve_machine_t mach, list_t args, list_t tags)
{
sieve_log_action (mach, "STOP", NULL);
mach->pc = (size_t) -4;
mach->pc = 0;
return 0;
}
......