summaryrefslogtreecommitdiffstats
path: root/buildrun.cxx
diff options
context:
space:
mode:
authorDave Brolley <brolley@redhat.com>2009-11-23 17:39:16 -0500
committerDave Brolley <brolley@redhat.com>2009-11-23 17:39:16 -0500
commit562d60b004e3d7ae73c1c7508be529006bd6430f (patch)
tree8bf077ab4caa738eead9bfe386041f94565f0899 /buildrun.cxx
parent3cb882af782ac1959b247ba7ec5286c516313218 (diff)
downloadsystemtap-steved-562d60b004e3d7ae73c1c7508be529006bd6430f.tar.gz
systemtap-steved-562d60b004e3d7ae73c1c7508be529006bd6430f.tar.xz
systemtap-steved-562d60b004e3d7ae73c1c7508be529006bd6430f.zip
Ensure uprobes/Makefile never returns failure due to setting permissions.
Ensure uprobes install directory has group 'stap-server'. Rename igid_in to in_group.
Diffstat (limited to 'buildrun.cxx')
-rw-r--r--buildrun.cxx2
1 files changed, 1 insertions, 1 deletions
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);