From 0da3e7a0e77120670cb69c55ad5418f2bf2afb9d Mon Sep 17 00:00:00 2001 From: Dave Brolley Date: Wed, 25 Nov 2009 14:14:03 -0500 Subject: - Allow root, the owner of the uprobes build directory and the members of the group owner of the uprobes buld directory to build uprobes.ko. - When building uprobes.ko, make all generated files writable by the group owner of the uprobes build directory. - Don't change the group owner of the uprobes build directory during 'make install' --- util.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'util.h') diff --git a/util.h b/util.h index b65f89e2..bb6c71bc 100644 --- a/util.h +++ b/util.h @@ -12,7 +12,7 @@ bool copy_file(const std::string& src, const std::string& dest, bool verbose=false); int create_dir(const char *dir); int remove_file_or_dir(const char *dir); -bool in_group (const char *gname); +bool in_group_id (gid_t target_gid); void tokenize(const std::string& str, std::vector& tokens, const std::string& delimiters); std::string find_executable(const std::string& name); -- cgit