Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1diff --git a/src/error.rs b/src/error.rs 2index 4563e1e..050610d 100644 3--- a/src/error.rs 4+++ b/src/error.rs 5@@ -34,7 +34,7 @@ impl fmt::Display for Error { 6 } 7 8 impl error::Error for Error { 9- fn source<'a>(&'a self) -> Option<&(dyn error::Error + 'static)> { 10+ fn source(&self) -> Option<&(dyn error::Error + 'static)> { 11 self.reason.as_deref() 12 } 13 }