fix some merge issues

This commit is contained in:
holger krekel
2019-07-18 11:38:10 +02:00
parent 7b736fe635
commit ee317cb1b5
3 changed files with 5 additions and 5 deletions

View File

@@ -774,7 +774,7 @@ pub unsafe fn dc_job_do_DC_JOB_CONFIGURE_IMAP(context: &Context, _job: *mut dc_j
0 as uintptr_t,
);
/* try to connect to SMTP - if we did not got an autoconfig, the first try was SSL-465 and we do a second try with STARTTLS-587 */
if context
if !context
.smtp
.clone()
.lock()
@@ -814,7 +814,7 @@ pub unsafe fn dc_job_do_DC_JOB_CONFIGURE_IMAP(context: &Context, _job: *mut dc_j
0, "Trying: {}", r_3,
);
if context
if !context
.smtp
.clone()
.lock()
@@ -860,7 +860,7 @@ pub unsafe fn dc_job_do_DC_JOB_CONFIGURE_IMAP(context: &Context, _job: *mut dc_j
r_4
);
if context
if !context
.smtp
.clone()
.lock()

View File

@@ -285,7 +285,7 @@ unsafe fn dc_job_do_DC_JOB_SEND(context: &Context, job: &mut dc_job_t) {
let loginparam = dc_loginparam_read(context, &context.sql, "configured_");
let connected = context.smtp.lock().unwrap().connect(context, &loginparam);
if connected {
if !connected {
dc_job_try_again_later(job, 3i32, 0 as *const libc::c_char);
current_block = 14216916617354591294;
} else {

View File

@@ -547,7 +547,7 @@ impl Imap {
config.server_flags = server_flags;
}
if self.setup_handle_if_needed(context) {
if !self.setup_handle_if_needed(context) {
self.free_connect_params();
return false;
}