File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -302,7 +302,7 @@ See rust-openssl documentation for more information:
302
302
let openssl_prefix = "RUST_VERSION_OPENSSL_" ;
303
303
let new_openssl_prefix = "RUST_VERSION_NEW_OPENSSL_" ;
304
304
let libressl_prefix = "RUST_VERSION_LIBRESSL_" ;
305
- let boringsl_prefix = "RUST_OPENSSL_IS_BORINGSSL" ;
305
+ let boringssl_prefix = "RUST_OPENSSL_IS_BORINGSSL" ;
306
306
let conf_prefix = "RUST_CONF_" ;
307
307
if let Some ( version) = line. strip_prefix ( openssl_prefix) {
308
308
openssl_version = Some ( parse_version ( version) ) ;
@@ -312,7 +312,7 @@ See rust-openssl documentation for more information:
312
312
libressl_version = Some ( parse_version ( version) ) ;
313
313
} else if let Some ( conf) = line. strip_prefix ( conf_prefix) {
314
314
enabled. push ( conf) ;
315
- } else if line. starts_with ( boringsl_prefix ) {
315
+ } else if line. starts_with ( boringssl_prefix ) {
316
316
is_boringssl = true ;
317
317
}
318
318
}
You can’t perform that action at this time.
0 commit comments