diff options
| author | Steven Fackler <[email protected]> | 2016-11-15 10:34:32 +0100 |
|---|---|---|
| committer | Steven Fackler <[email protected]> | 2016-11-15 10:34:32 +0100 |
| commit | 6026396423c7239bd230a7bf9eb64c5d1b892799 (patch) | |
| tree | f7b1df21909d04291946f429308476e1bc98b973 | |
| parent | Rename ec_key to ec (diff) | |
| download | rust-openssl-6026396423c7239bd230a7bf9eb64c5d1b892799.tar.xz rust-openssl-6026396423c7239bd230a7bf9eb64c5d1b892799.zip | |
Add a note that the systest logic is kind of busted
| -rw-r--r-- | systest/build.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/systest/build.rs b/systest/build.rs index 120f103e..b0ca3250 100644 --- a/systest/build.rs +++ b/systest/build.rs @@ -52,6 +52,7 @@ fn main() { format!("bio_info_cb*") } else if s == "_STACK" { format!("struct stack_st") + // This logic should really be cleaned up } else if is_struct && s != "point_conversion_form_t" && s.chars().next().unwrap().is_lowercase() { format!("struct {}", s) } else { |