mirror of
https://github.com/falcosecurity/falco.git
synced 2026-04-26 10:33:02 +00:00
23 lines
684 B
Diff
23 lines
684 B
Diff
diff --git a/userspace/libscap/scap.c b/userspace/libscap/scap.c
|
|
index 59b04e0a..bdc311cb 100644
|
|
--- a/userspace/libscap/scap.c
|
|
+++ b/userspace/libscap/scap.c
|
|
@@ -52,7 +52,7 @@ limitations under the License.
|
|
//#define NDEBUG
|
|
#include <assert.h>
|
|
|
|
-static const char *SYSDIG_BPF_PROBE_ENV = "SYSDIG_BPF_PROBE";
|
|
+static const char *SYSDIG_BPF_PROBE_ENV = "FALCO_BPF_PROBE";
|
|
|
|
//
|
|
// Probe version string size
|
|
@@ -171,7 +171,7 @@ scap_t* scap_open_live_int(char *error, int32_t *rc,
|
|
return NULL;
|
|
}
|
|
|
|
- snprintf(buf, sizeof(buf), "%s/.sysdig/%s-bpf.o", home, PROBE_NAME);
|
|
+ snprintf(buf, sizeof(buf), "%s/.falco/%s-bpf.o", home, PROBE_NAME);
|
|
bpf_probe = buf;
|
|
}
|
|
}
|