Minor fix
Showing
1 changed file
with
2 additions
and
2 deletions
... | @@ -476,13 +476,13 @@ mu_sieve_stream_save (mu_sieve_machine_t mach) | ... | @@ -476,13 +476,13 @@ mu_sieve_stream_save (mu_sieve_machine_t mach) |
476 | if (mu_stream_ioctl (mach->errstream, MU_IOCTL_LOGSTREAM, | 476 | if (mu_stream_ioctl (mach->errstream, MU_IOCTL_LOGSTREAM, |
477 | MU_IOCTL_LOGSTREAM_GET_MODE, &mach->err_mode) == 0 | 477 | MU_IOCTL_LOGSTREAM_GET_MODE, &mach->err_mode) == 0 |
478 | && mu_stream_ioctl (mach->errstream, MU_IOCTL_LOGSTREAM, | 478 | && mu_stream_ioctl (mach->errstream, MU_IOCTL_LOGSTREAM, |
479 | MU_IOCTL_LOGSTREAM_SET_LOCUS, &mach->err_locus) == 0) | 479 | MU_IOCTL_LOGSTREAM_GET_LOCUS, &mach->err_locus) == 0) |
480 | mach->state_flags |= MU_SV_SAVED_ERR_STATE; | 480 | mach->state_flags |= MU_SV_SAVED_ERR_STATE; |
481 | 481 | ||
482 | if (mu_stream_ioctl (mach->dbgstream, MU_IOCTL_LOGSTREAM, | 482 | if (mu_stream_ioctl (mach->dbgstream, MU_IOCTL_LOGSTREAM, |
483 | MU_IOCTL_LOGSTREAM_GET_MODE, &mach->dbg_mode) == 0 | 483 | MU_IOCTL_LOGSTREAM_GET_MODE, &mach->dbg_mode) == 0 |
484 | && mu_stream_ioctl (mach->dbgstream, MU_IOCTL_LOGSTREAM, | 484 | && mu_stream_ioctl (mach->dbgstream, MU_IOCTL_LOGSTREAM, |
485 | MU_IOCTL_LOGSTREAM_SET_LOCUS, &mach->dbg_locus) == 0) | 485 | MU_IOCTL_LOGSTREAM_GET_LOCUS, &mach->dbg_locus) == 0) |
486 | mach->state_flags |= MU_SV_SAVED_DBG_STATE; | 486 | mach->state_flags |= MU_SV_SAVED_DBG_STATE; |
487 | 487 | ||
488 | mach->state_flags |= MU_SV_SAVED_STATE; | 488 | mach->state_flags |= MU_SV_SAVED_STATE; | ... | ... |
-
Please register or sign in to post a comment