aboutsummaryrefslogtreecommitdiff
path: root/patches
diff options
context:
space:
mode:
authorRobin Krahl <me@robin-krahl.de>2020-09-20 05:01:06 +0200
committerRobin Krahl <robin.krahl@ireas.org>2020-09-20 11:50:05 +0200
commite9a06bb9a2802a5ae6011fcd96cf54e1cfc7d311 (patch)
treebac0eab277ac64d6960dd433b7603393bbab2561 /patches
parent483ec7256d6c4d01ba6c41513fdf8bbd7df6b4b3 (diff)
downloadnitrokey-sys-rs-e9a06bb9a2802a5ae6011fcd96cf54e1cfc7d311.tar.gz
nitrokey-sys-rs-e9a06bb9a2802a5ae6011fcd96cf54e1cfc7d311.tar.bz2
Derive Default for libnitrokey structs
This patch adds the --with-derive-default option to the bindgen invocation so that it derives Default implementations for all libnitrokey structs. This allows us to simplify code in nitrokey-rs, for example the initialization of structs that are used in nitrokey-sys functions with output parameters.
Diffstat (limited to 'patches')
-rw-r--r--patches/deprecated.diff4
1 files changed, 2 insertions, 2 deletions
diff --git a/patches/deprecated.diff b/patches/deprecated.diff
index a7d2359..c814812 100644
--- a/patches/deprecated.diff
+++ b/patches/deprecated.diff
@@ -6,7 +6,7 @@ Index: nitrokey-sys-rs/src/ffi.rs
===================================================================
--- nitrokey-sys-rs.orig/src/ffi.rs
+++ nitrokey-sys-rs/src/ffi.rs
-@@ -762,6 +762,7 @@ extern "C" {
+@@ -767,6 +767,7 @@ extern "C" {
#[doc = " deprecated in favor of NK_get_status_as_string."]
#[doc = " @return string representation of the status or an empty string"]
#[doc = " if the command failed"]
@@ -14,7 +14,7 @@ Index: nitrokey-sys-rs/src/ffi.rs
pub fn NK_status() -> *mut ::std::os::raw::c_char;
}
extern "C" {
-@@ -1017,6 +1018,7 @@ extern "C" {
+@@ -1022,6 +1023,7 @@ extern "C" {
pub fn NK_totp_set_time_soft(time: u64) -> ::std::os::raw::c_int;
}
extern "C" {