From 562d60b004e3d7ae73c1c7508be529006bd6430f Mon Sep 17 00:00:00 2001 From: Dave Brolley Date: Mon, 23 Nov 2009 17:39:16 -0500 Subject: Ensure uprobes/Makefile never returns failure due to setting permissions. Ensure uprobes install directory has group 'stap-server'. Rename igid_in to in_group. --- buildrun.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'buildrun.cxx') diff --git a/buildrun.cxx b/buildrun.cxx index 6774b536..601d4a10 100644 --- a/buildrun.cxx +++ b/buildrun.cxx @@ -334,7 +334,7 @@ uprobes_pass (systemtap_session& s) * stap must fail. */ int rc; - if (geteuid() == 0 || egid_in ("stap-server")) + if (geteuid() == 0 || in_group ("stap-server")) rc = make_uprobes(s); else rc = verify_uprobes_uptodate(s); -- cgit