diff --git a/deltachat-ffi/deltachat.h b/deltachat-ffi/deltachat.h index c3299a217..b98dfba0c 100644 --- a/deltachat-ffi/deltachat.h +++ b/deltachat-ffi/deltachat.h @@ -2649,7 +2649,7 @@ void dc_str_unref (char* str); * by a QR-code. The backup contains the entire state of the account * including credentials. This can be used to setup a new device. * - * Once this function returns, the backup is being offered to remove devices. + * Once this function returns, the backup is being offered to remote devices. * To wait until one device received the backup, use * dc_backup_provider_wait(). Alternatively abort the operation using * dc_stop_ongoing_process(). diff --git a/deltachat-ffi/src/lib.rs b/deltachat-ffi/src/lib.rs index f4923e7ed..43a82f959 100644 --- a/deltachat-ffi/src/lib.rs +++ b/deltachat-ffi/src/lib.rs @@ -4146,7 +4146,7 @@ pub unsafe extern "C" fn dc_backup_provider_new( context: *mut dc_context_t, ) -> *mut dc_backup_provider_t { if context.is_null() { - eprintln!("ignoring careless call to dc_send_backup()"); + eprintln!("ignoring careless call to dc_backup_provider_new()"); return ptr::null_mut(); } let ctx = &*context;