projects
/
collectd.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
730fef3
)
qmail plugin: Don't recurse into ".", ".." and other directories beginning with a...
author
Benjamin Pineau
<ben.pineau@gmail.com>
Sat, 5 Jul 2008 08:45:09 +0000
(10:45 +0200)
committer
Florian Forster
<octo@leeloo.lan.home.verplant.org>
Sat, 5 Jul 2008 08:45:09 +0000
(10:45 +0200)
Also use PATH_MAX instead of 4096.
src/qmail.c
patch
|
blob
|
history
diff --git
a/src/qmail.c
b/src/qmail.c
index
1a8e2bd
..
74386c3
100644
(file)
--- a/
src/qmail.c
+++ b/
src/qmail.c
@@
-81,9
+81,12
@@
static int count_files_in_subtree (const char *path, int depth)
count = 0;
while ((de = readdir (dh)) != NULL)
{
- char abs_path[
4096
];
+ char abs_path[
PATH_MAX
];
struct stat statbuf;
+ if (de->d_name[0] == '.')
+ continue;
+
ssnprintf (abs_path, sizeof (abs_path), "%s/%s", path, de->d_name);
status = lstat (abs_path, &statbuf);