forked from security/hakurei
cmd/mbf: disable threshold by default
This is not very useful. Signed-off-by: Ophestra <cat@gensokyo.uk>
This commit is contained in:
@@ -62,11 +62,14 @@ func main() {
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
if cache, err = pkg.Open(ctx, msg, flagCures, base); err == nil {
|
if cache, err = pkg.Open(ctx, msg, flagCures, base); err == nil {
|
||||||
if flagTShift < 0 || flagTShift > 31 {
|
if flagTShift < 0 {
|
||||||
flagTShift = 31
|
cache.SetThreshold(0)
|
||||||
}
|
} else if flagTShift > 31 {
|
||||||
|
cache.SetThreshold(1 << 31)
|
||||||
|
} else {
|
||||||
cache.SetThreshold(1 << flagTShift)
|
cache.SetThreshold(1 << flagTShift)
|
||||||
}
|
}
|
||||||
|
}
|
||||||
return
|
return
|
||||||
}).Flag(
|
}).Flag(
|
||||||
&flagVerbose,
|
&flagVerbose,
|
||||||
@@ -82,7 +85,7 @@ func main() {
|
|||||||
"Directory to store cured artifacts",
|
"Directory to store cured artifacts",
|
||||||
).Flag(
|
).Flag(
|
||||||
&flagTShift,
|
&flagTShift,
|
||||||
"tshift", command.IntFlag(31),
|
"tshift", command.IntFlag(-1),
|
||||||
"Dependency graph size exponent, to the power of 2",
|
"Dependency graph size exponent, to the power of 2",
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user