Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
Signed-off-by: Roberto Scolaro <[email protected]>
  • Loading branch information
therealbobo committed Dec 1, 2023
1 parent e625d7f commit aeaad10
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions userspace/sysdig/utils/plugin_utils.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,7 @@ void plugin_utils::load_plugin(sinsp *inspector, const std::string& name)
plugin_entry p;
p.used = true;
p.inited = false;
p.libpath = filepath;
p.libpath = filepath.generic_string();
p.names.insert(soname);
p.names.insert(filepath);
p.names.insert(filename);
Expand Down Expand Up @@ -342,7 +342,7 @@ void plugin_utils::read_plugins_from_dirs(sinsp *inspector)
plugin_entry p;
p.used = false;
p.inited = false;
p.libpath = filepath;
p.libpath = filepath.generic_string();
p.names.insert(filepath);
p.names.insert(file.filename());
p.names.insert(plugin->name());
Expand Down

0 comments on commit aeaad10

Please sign in to comment.