From: Colin Walters Date: Wed, 9 Feb 2022 23:41:31 +0000 (-0500) Subject: Fast-track fix for `ostree_gpg_verify_result_get_all()` X-Git-Tag: archive/raspbian/2022.4-1+rpi1^2~9^2^2~20^2~18 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=ecbe3ba0f89ac391e6d4842581c32b3eff1208fd;p=ostree.git Fast-track fix for `ostree_gpg_verify_result_get_all()` This cherry picks just the changes from https://github.com/ostreedev/ostree/pull/2537 We don't need to wait to respin a new ostree release just for this. --- diff --git a/rust-bindings/rust/src/auto/gpg_verify_result.rs b/rust-bindings/rust/src/auto/gpg_verify_result.rs index ec7617b6..121f8f7c 100644 --- a/rust-bindings/rust/src/auto/gpg_verify_result.rs +++ b/rust-bindings/rust/src/auto/gpg_verify_result.rs @@ -50,7 +50,7 @@ impl GpgVerifyResult { #[doc(alias = "get_all")] pub fn all(&self, signature_index: u32) -> Option { unsafe { - from_glib_full(ffi::ostree_gpg_verify_result_get_all(self.to_glib_none().0, signature_index)) + from_glib_none(ffi::ostree_gpg_verify_result_get_all(self.to_glib_none().0, signature_index)) } }