Commit 458af6e0 authored by gabi-250's avatar gabi-250 🕸️
Browse files

keymgr: Fix another infinite loop around Keymgr error handling.

This `From` impl was just calling itself recursively...
parent 6e2b48c6
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -391,7 +391,7 @@ impl From<TorAddrError> for Error {

impl From<tor_keymgr::Error> for Error {
    fn from(e: tor_keymgr::Error) -> Error {
        e.into()
        ErrorDetail::KeyStore(e).into()
    }
}