opt: adds StrictRecovery to StrictAll
diff --git a/leveldb/opt/options.go b/leveldb/opt/options.go
index d928a21..dea86ff 100644
--- a/leveldb/opt/options.go
+++ b/leveldb/opt/options.go
@@ -114,7 +114,7 @@
 	StrictOverride
 
 	// StrictAll enables all strict flags.
-	StrictAll = StrictManifest | StrictJournalChecksum | StrictJournal | StrictBlockChecksum | StrictCompaction | StrictReader
+	StrictAll = StrictManifest | StrictJournalChecksum | StrictJournal | StrictBlockChecksum | StrictCompaction | StrictReader | StrictRecovery
 
 	// DefaultStrict is the default strict flags. Specify any strict flags
 	// will override default strict flags as whole (i.e. not OR'ed).