From 3fe71dff5a58efaabd1686e2a25c09adb8d74092 Mon Sep 17 00:00:00 2001 From: Youngsuk Kim Date: Fri, 27 Mar 2020 10:15:35 -0400 Subject: [PATCH] Modify reference to issue 1013 Co-Authored-By: Ralf Jung --- src/shims/env.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/shims/env.rs b/src/shims/env.rs index eee9a539185c..b6d701026378 100644 --- a/src/shims/env.rs +++ b/src/shims/env.rs @@ -28,7 +28,7 @@ impl<'tcx> EnvVars<'tcx> { let target_os = ecx.tcx.sess.target.target.target_os.as_str(); if target_os == "windows" { // Temporary hack: Exclude `TERM` var to avoid terminfo trying to open the termcap file. - // Can be removed once Issue#1013(Implement file system access for Windows) is resolved. + // Can be removed once https://github.com/rust-lang/miri/issues/1013 is resolved. excluded_env_vars.push("TERM".to_owned()); }