aboutsummaryrefslogtreecommitdiffstats
path: root/src/msec_find/find.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/msec_find/find.c')
-rw-r--r--src/msec_find/find.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/msec_find/find.c b/src/msec_find/find.c
index 55a0d03..381dc25 100644
--- a/src/msec_find/find.c
+++ b/src/msec_find/find.c
@@ -82,7 +82,9 @@ static int traverse(const char *file, const struct stat *sb, int flag, struct FT
/*
* Don't walk throught /dev & /proc
*/
- if ( (strncmp("/proc", file, 5) == 0) || (strncmp("/dev", file, 4) == 0) )
+ if ( (strncmp("/proc", file, 5) == 0) ||
+ (strncmp("/dev", file, 4) == 0) ||
+ (strncmp("/sys", file, 4) == 0) )
return 0;
if (use_regexp && regexec(&exclude_regexp, file, 0, NULL, 0) == 0) {