Forward sanity check error in EntryRefresh()

This commit is contained in:
2025-05-31 20:34:47 -04:00
parent 346fa35dc8
commit 038cd3670d
+4 -1
View File
@@ -98,7 +98,10 @@ func EntryRefresh(oldRCWPassphrase, newRCWPassphrase []byte, removeOldDir bool)
}
// generate new sanity check file
RCWSanityCheckGen(newRCWPassphrase)
err = RCWSanityCheckGen(newRCWPassphrase)
if err != nil {
return err
}
}
return nil