Refine type of SmtpState.doing_jobs to bool

This commit is contained in:
Dmitry Bogatov
2019-08-01 06:51:52 +00:00
parent 8eb5cec9ce
commit 7394666266
2 changed files with 4 additions and 4 deletions

View File

@@ -107,7 +107,7 @@ impl Default for BobStatus {
pub struct SmtpState {
pub idle: bool,
pub suspended: bool,
pub doing_jobs: i32,
pub doing_jobs: bool,
pub perform_jobs_needed: i32,
pub probe_network: bool,
}