mirror of
https://github.com/zeek/zeek.git
synced 2025-10-04 15:48:19 +00:00
Sort streams in "-B help" output, and match case-insensitively throughout
Matching of plugins' debug streams was still case-sensitive. Also contains some minor output tweaks. It'd be nice to only list plugin debug streams actually _used_ by plugins. I didn't see a quick way to do that so that's for another time.
This commit is contained in:
parent
b4ddf73e22
commit
5e4942bcc0
4 changed files with 23 additions and 13 deletions
|
@ -108,7 +108,7 @@ private:
|
|||
static Stream streams[NUM_DBGS];
|
||||
|
||||
const std::string PluginStreamName(const std::string& plugin_name) {
|
||||
return "plugin-" + util::strreplace(plugin_name, "::", "-");
|
||||
return "plugin-" + util::strtolower(util::strreplace(plugin_name, "::", "-"));
|
||||
}
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue